Web tests fail with Timeout
When running web tests using SeeTest Digital Assurance Lab, we take screenshot after each command.
Taking screenshot can take a long time (particularly in Internet Explorer), so when running web grid tests on SeeTest Digital Assurance Lab user should do one of the following:
- Disable taking screenshots by adding the capability takeScreenshots=false in the conf.js file.
- Increase default timeout. In Protractor it's done by adding the following piece of code to the exports.config in conf.js file:
Code Block | ||||
---|---|---|---|---|
| ||||
exports.config = { .. .. jasmineNodeOpts: { defaultTimeoutInterval: 2500000 }, .. .. } |