system-testing 1.0.4 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "system-testing",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "System testing with Selenium and browsers.",
5
5
  "keywords": [
6
6
  "system",
@@ -180,7 +180,7 @@ export default class SystemTest {
180
180
  .setCapability("goog:loggingPrefs", {browser: "ALL"})
181
181
  .build()
182
182
 
183
- await this.setTimeouts(10000)
183
+ await this.setTimeouts(20000)
184
184
 
185
185
  // Web socket server to communicate with browser
186
186
  await this.startWebSocketServer()
@@ -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) {