webdriverio 6.1.2 → 6.1.7
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/README.md +1 -1
- package/package.json +6 -6
- package/webdriverio-core.d.ts +12 -1
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
WebdriverIO
|
|
2
2
|
===========
|
|
3
3
|
|
|
4
|
-
> Next-gen browser automation test framework for Node.js
|
|
4
|
+
> Next-gen browser and mobile automation test framework for Node.js
|
|
5
5
|
|
|
6
6
|
This package provides and easy to manage API and a lot of syntactical sugar on top of the WebDriver specification. You can use WebdriverIO as a standalone package or via a testrunner using [`@wdio/cli`](https://webdriver.io/docs/clioptions.html). WebdriverIO allows to run tests locally using the WebDriver or Chrome DevTools protocol as well as remote user agents using cloud providers like [Sauce Labs](https://saucelabs.com/).
|
|
7
7
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webdriverio",
|
|
3
|
-
"description": "Next-gen browser automation test
|
|
4
|
-
"version": "6.1.
|
|
3
|
+
"description": "Next-gen browser and mobile automation test framework for Node.js",
|
|
4
|
+
"version": "6.1.7",
|
|
5
5
|
"homepage": "https://webdriver.io",
|
|
6
6
|
"author": "Christian Bromann <christian@saucelabs.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -59,9 +59,9 @@
|
|
|
59
59
|
"@wdio/logger": "6.0.16",
|
|
60
60
|
"@wdio/repl": "6.1.0",
|
|
61
61
|
"@wdio/utils": "6.1.0",
|
|
62
|
-
"archiver": "^
|
|
62
|
+
"archiver": "^4.0.1",
|
|
63
63
|
"css-value": "^0.0.1",
|
|
64
|
-
"devtools": "6.1.
|
|
64
|
+
"devtools": "6.1.7",
|
|
65
65
|
"grapheme-splitter": "^1.0.2",
|
|
66
66
|
"lodash.clonedeep": "^4.5.0",
|
|
67
67
|
"lodash.isobject": "^3.0.2",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"resq": "^1.6.0",
|
|
71
71
|
"rgb2hex": "^0.1.0",
|
|
72
72
|
"serialize-error": "^6.0.0",
|
|
73
|
-
"webdriver": "6.1.
|
|
73
|
+
"webdriver": "6.1.4"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "bde6507d480acb07da6868d624ee714096b15956"
|
|
76
76
|
}
|
package/webdriverio-core.d.ts
CHANGED
|
@@ -49,7 +49,7 @@ declare namespace WebdriverIO {
|
|
|
49
49
|
[key: string]: any;
|
|
50
50
|
}
|
|
51
51
|
interface ServiceWithOption extends Array<string|ServiceOption>{ 0: string; 1: ServiceOption }
|
|
52
|
-
type ServiceEntry = string | HookFunctions | [string, ServiceOption]
|
|
52
|
+
type ServiceEntry = string | HookFunctions | [string, ServiceOption] | object
|
|
53
53
|
|
|
54
54
|
interface Options {
|
|
55
55
|
/**
|
|
@@ -148,6 +148,17 @@ declare namespace WebdriverIO {
|
|
|
148
148
|
* with the reporter name and the second element an object with reporter options.
|
|
149
149
|
*/
|
|
150
150
|
reporters?: (string | object)[];
|
|
151
|
+
/**
|
|
152
|
+
* Determines in which interval the reporter should check if they are synchronised
|
|
153
|
+
* if they report their logs asynchronously (e.g. if logs are streamed to a 3rd
|
|
154
|
+
* party vendor).
|
|
155
|
+
*/
|
|
156
|
+
reporterSyncInterval?: number;
|
|
157
|
+
/**
|
|
158
|
+
* Determines the maximum time reporters have to finish uploading all their logs
|
|
159
|
+
* until an error is being thrown by the testrunner.
|
|
160
|
+
*/
|
|
161
|
+
reporterSyncTimeout?: number;
|
|
151
162
|
/**
|
|
152
163
|
* Services take over a specific job you don't want to take care of. They enhance
|
|
153
164
|
* your test setup with almost no effort.
|