system-testing 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/system-test.js +1 -1
package/package.json
CHANGED
package/src/system-test.js
CHANGED
|
@@ -213,7 +213,7 @@ export default class SystemTest {
|
|
|
213
213
|
}
|
|
214
214
|
|
|
215
215
|
async driverSetTimeouts(newTimeout) {
|
|
216
|
-
await this.driver.manage().setTimeouts({implicit: newTimeout})
|
|
216
|
+
await this.driver.manage().setTimeouts({implicit: newTimeout, pageLoad: newTimeout, script: newTimeout})
|
|
217
217
|
}
|
|
218
218
|
|
|
219
219
|
async setTimeouts(newTimeout) {
|