Skip to content

Releases: Allan1/guide-automator

Version 2.2.4

30 Jan 19:40
Compare
Choose a tag to compare
  • Update dependencies

Version 2.2.3

30 Jan 19:26
Compare
Choose a tag to compare
  • Create Global variable, usage GDGLOBAL['Var'] = value
  • Driver quit on exception (ElementNotFound)

Version 2.2.1

11 Jan 23:41
Compare
Choose a tag to compare
  • New Arguments for TakeScreenshotOf, support to elements on multiple contexts (Iframes)

Version 2.2.0

25 Dec 17:14
Compare
Choose a tag to compare
  • New Dependency vm2, needed to isolate user commands and guide-automator
  • Removed Legacy mode
  • New Command 'pageContext'

Version 2.1.10

10 Dec 02:37
Compare
Choose a tag to compare
  • Create a variable GD.driver, GD.by and GD.until . See Using GDdriver.
  • Introduced to firefox extension for building blocks guide-automator. Addon

Version 2.1.9

05 Dec 13:36
Compare
Choose a tag to compare
  • Fix PDF export
  • Suport to multiple outline on takeScreenshotOf takeScreenshotOf(['selector1','selector2'],false,true)

Version 2.1.7

19 Nov 21:48
Compare
Choose a tag to compare
  • Update documentation
  • New command, console.print()
    • If you need print anything dynamically on manual, put in the JavaScript block the command console.print(string)
  • Global variable support
    • Global["variable"] = value;
  • Fix bugs

Version 2.1.0

19 Nov 22:29
Compare
Choose a tag to compare
  • New Feature, import style
    • Import a css with guide-automator -i input.md -s path/to/file.css
    • You can use ours themes with guide-automator -i input.md -s lightBlue
  • Table of contents in html output
  • Fix some bugs

Version 2.0.0

19 Nov 22:22
Compare
Choose a tag to compare

Notable Changes #2


  • Guide-automator now uses the JavaScript compiler instead of a own compiler (If you want use legacy mode, use option -L)
  • Use commander package, to use program, you need write (guide-automator -i input.md -o outputFolder), see usage with 'guide-automator -h'
  • Refactoring Guide-Automator, code is modularized
    • bin/guide-automator-parser.js is responsible for parser/compile markdown files
    • bin/guide-automator-export.js is responsible for export result of guide-automator-parser (pdf or html)
    • bin/guide-automator-function.js is responsible for functions like takeScreenshot()
    • guide-automator.js is responsible for parse program options and read a markdown file
  • Legacy Mode () is DEPRECATED, in future versions it will be removed.
  • Fix some bugs