webdriverio 5.9.1 → 5.9.2
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 +2 -2
- package/webdriverio-core.d.ts +0 -6
- package/webdriverio.d.ts +9 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webdriverio",
|
|
3
3
|
"description": "Next-gen WebDriver test automation framework for Node.js",
|
|
4
|
-
"version": "5.9.
|
|
4
|
+
"version": "5.9.2",
|
|
5
5
|
"homepage": "https://webdriver.io",
|
|
6
6
|
"author": "Christian Bromann <christian@saucelabs.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"serialize-error": "^3.0.0",
|
|
70
70
|
"webdriver": "^5.9.1"
|
|
71
71
|
},
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "fc102df36cd2ab674aebf3eca1072d4866b0918b"
|
|
73
73
|
}
|
package/webdriverio-core.d.ts
CHANGED
|
@@ -277,12 +277,6 @@ declare namespace WebdriverIO {
|
|
|
277
277
|
executeAsync: ExecuteAsync;
|
|
278
278
|
call: Call;
|
|
279
279
|
options: Options;
|
|
280
|
-
waitUntil(
|
|
281
|
-
condition: () => boolean,
|
|
282
|
-
timeout?: number,
|
|
283
|
-
timeoutMsg?: string,
|
|
284
|
-
interval?: number
|
|
285
|
-
): boolean
|
|
286
280
|
$$(
|
|
287
281
|
selector: string | Function
|
|
288
282
|
): Element[];
|
package/webdriverio.d.ts
CHANGED
|
@@ -45,7 +45,15 @@ declare namespace WebdriverIOAsync {
|
|
|
45
45
|
options: WebdriverIO.MultiRemoteOptions
|
|
46
46
|
): WebDriver.ClientAsync;
|
|
47
47
|
|
|
48
|
-
interface Browser extends BrowserAsync, BrowserStatic {
|
|
48
|
+
interface Browser extends BrowserAsync, BrowserStatic {
|
|
49
|
+
waitUntil(
|
|
50
|
+
condition: () => Promise<boolean>,
|
|
51
|
+
timeout?: number,
|
|
52
|
+
timeoutMsg?: string,
|
|
53
|
+
interval?: number
|
|
54
|
+
): Promise<boolean>
|
|
55
|
+
}
|
|
56
|
+
|
|
49
57
|
interface Element extends ElementAsync, ElementStatic { }
|
|
50
58
|
interface Config {}
|
|
51
59
|
}
|