@wdio/sync
Advanced tools
Comparing version 5.9.1 to 5.9.2
{ | ||
"name": "@wdio/sync", | ||
"version": "5.9.1", | ||
"version": "5.9.2", | ||
"description": "A WebdriverIO plugin. Helper module to run WebdriverIO commands synchronously", | ||
@@ -44,3 +44,3 @@ "author": "Christian Bromann <christian@saucelabs.com>", | ||
}, | ||
"gitHead": "575883b611fde854fae80830e91417d88838aa50" | ||
"gitHead": "fc102df36cd2ab674aebf3eca1072d4866b0918b" | ||
} |
@@ -280,8 +280,2 @@ /// <reference types="node"/> | ||
options: Options; | ||
waitUntil( | ||
condition: () => boolean, | ||
timeout?: number, | ||
timeoutMsg?: string, | ||
interval?: number | ||
): boolean | ||
$$( | ||
@@ -288,0 +282,0 @@ selector: string | Function |
@@ -14,2 +14,11 @@ /// <reference types="@wdio/sync/webdriverio-core"/> | ||
): WebDriver.Client; | ||
interface Browser { | ||
waitUntil( | ||
condition: () => boolean, | ||
timeout?: number, | ||
timeoutMsg?: string, | ||
interval?: number | ||
): boolean | ||
} | ||
} | ||
@@ -16,0 +25,0 @@ |
27283
771