Open
Description
What are you trying to achieve?
I'm trying to get a realtime feedback for quicker test development cycle. Just like chimp where:
- Browser stays open after tests are run
- Tests are re-run when the test files change
- auto manage selenium server and browser drivers
- Auto installs dependencies
What do you get instead?
No realtime feedback on test writing
- Browser shuts down after each run
- Have to manually re-run tests
- Need to start selenium manually
- Need to install helpers manually (even though it's mentioned during init)
Provide console output if related. Use
--verbose
mode for more details.
# paste output here
Provide test source code if related
// paste test
Details
- CodeceptJS version: 0.5.1
- NodeJS Version: v6.10.2
- Operating System: win 10 pro x64
- Protractor || WebDriverIO || Nightmare version (if related): webdriverio: 4.6.2
- Configuration file:
codecept.json
{
"tests": "./feature/*.js",
"timeout": 10000,
"output": "./output",
"helpers": {
"WebDriverIO": {
"url": "http://localhost",
"browser": "chrome",
"restart": true,
"windowSize": "maximize",
"timeouts": {
"script": 60000,
"page load": 10000,
"implicit" : 5000
}
}
},
"include": {
"I": "./custom-steps/steps_file.js"
},
"bootstrap": false,
"mocha": {},
"name": "shaadi-try"
}
# paste suite config here