Releases: Allan1/guide-automator
Releases · Allan1/guide-automator
Version 2.2.4
Version 2.2.3
- Create Global variable, usage
GDGLOBAL['Var'] = value
- Driver quit on exception (ElementNotFound)
Version 2.2.1
- New Arguments for TakeScreenshotOf, support to elements on multiple contexts (Iframes)
Version 2.2.0
- New Dependency
vm2
, needed to isolate user commands and guide-automator - Removed Legacy mode
- New Command 'pageContext'
Version 2.1.10
- Create a variable
GD.driver
,GD.by
andGD.until
. See Using GDdriver. - Introduced to firefox extension for building blocks guide-automator. Addon
Version 2.1.9
- Fix PDF export
- Suport to multiple outline on takeScreenshotOf
takeScreenshotOf(['selector1','selector2'],false,true)
Version 2.1.7
- Update documentation
- Useful tips in README.md
- Code example in examples/example.md or RAW file
- Output pdf example is available
- 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
- 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
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