webdriverio 6.12.0 → 6.12.1

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -3,7 +3,7 @@ WebdriverIO
3
3
 
4
4
  > Next-gen browser and mobile automation test framework for Node.js
5
5
 
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/).
6
+ This package provides an 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
 
8
8
  ## Installation
9
9
 
@@ -15,7 +15,7 @@ $ npm install webdriverio
15
15
 
16
16
  ## Usage
17
17
 
18
- WebdriverIO by default uses Puppeteer to automate a browser like Chrome, Firefox or Chromium Edge. So if you have these installs the following script should start a browser for you and get the title of the page:
18
+ WebdriverIO by default uses Puppeteer to automate a browser like Chrome, Firefox or Chromium Edge. So if you have Chrome installed, the following script should start a browser for you and get the title of the page:
19
19
 
20
20
  ```js
21
21
  import { remote } from 'webdriverio'
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "webdriverio",
3
3
  "description": "Next-gen browser and mobile automation test framework for Node.js",
4
- "version": "6.12.0",
4
+ "version": "6.12.1",
5
5
  "homepage": "https://webdriver.io",
6
6
  "author": "Christian Bromann <christian@saucelabs.com>",
7
7
  "license": "MIT",
@@ -57,7 +57,7 @@
57
57
  },
58
58
  "dependencies": {
59
59
  "@types/puppeteer-core": "^5.4.0",
60
- "@wdio/config": "6.11.0",
60
+ "@wdio/config": "6.12.1",
61
61
  "@wdio/logger": "6.10.10",
62
62
  "@wdio/repl": "6.11.0",
63
63
  "@wdio/utils": "6.11.0",
@@ -65,7 +65,7 @@
65
65
  "atob": "^2.1.2",
66
66
  "css-shorthand-properties": "^1.1.1",
67
67
  "css-value": "^0.0.1",
68
- "devtools": "6.12.0",
68
+ "devtools": "6.12.1",
69
69
  "fs-extra": "^9.0.1",
70
70
  "get-port": "^5.1.1",
71
71
  "grapheme-splitter": "^1.0.2",
@@ -77,8 +77,8 @@
77
77
  "puppeteer-core": "^5.1.0",
78
78
  "resq": "^1.9.1",
79
79
  "rgb2hex": "0.2.3",
80
- "serialize-error": "^7.0.0",
81
- "webdriver": "6.12.0"
80
+ "serialize-error": "^8.0.0",
81
+ "webdriver": "6.12.1"
82
82
  },
83
- "gitHead": "e8bae1e8becee38ee362989dc91bdd0c831512e9"
83
+ "gitHead": "063970498c9b1142482a1a035aa699c64cc8215c"
84
84
  }