-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- spinner - Simple progress indicator updating with each action performed - console - Logs progress information to the console (scenario start, scenario end, scenario found an error) - file - Generates files with failing scenarios, which can be replayed with qape <files...> Added new events for reporters: - action:start - Emitted before an action is executed, recieves instance and action - action:error - Emitted when an action execution error occured, recieves instance, action and error - action:end - Emitted after an action is executed, recieves instance, action and results Added new config option afterActionWaitTime (default: 500ms). This option causes a browser to wait for specified amount of time after each action, this gives a webpage time to evaluate all scripts and possibly cause an error. Browser userAgent will no longer display whether it is in headless mode. This caused an issue with some websites not reporting errors in headless mode. Updated dependencies.
- Loading branch information
1 parent
ee80ef9
commit 7f03ddd
Showing
18 changed files
with
702 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,9 +17,23 @@ | |
"qape": "./bin/qape.js" | ||
}, | ||
"keywords": [ | ||
"autonomous", | ||
"testing", | ||
"e2e", | ||
"monkey" | ||
"end-2-end", | ||
"end-to-end", | ||
"user", | ||
"simulator", | ||
"monkey", | ||
"automatic", | ||
"robot", | ||
"bot", | ||
"testingbot", | ||
"quality", | ||
"assurance", | ||
"qa", | ||
"puppeteer", | ||
"chrome" | ||
], | ||
"repository": { | ||
"type": "git", | ||
|
@@ -28,17 +42,17 @@ | |
"author": "Filip Satek <[email protected]>", | ||
"license": "MIT", | ||
"dependencies": { | ||
"commander": "2.17.1", | ||
"commander": "2.19.0", | ||
"glob-all": "3.1.0", | ||
"lodash.isequal": "4.5.0", | ||
"puppeteer": "1.8.0" | ||
"puppeteer": "1.11.0" | ||
}, | ||
"devDependencies": { | ||
"auto-changelog": "^1.10.1", | ||
"babel-cli": "6.26.0", | ||
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2", | ||
"documentation": "8.1.2", | ||
"express": "4.16.3", | ||
"express": "4.16.4", | ||
"jest": "23.6.0", | ||
"serve-static": "1.13.2", | ||
"source-map-support": "0.5.9" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.