diff options
Diffstat (limited to 'node_modules/selenium-webdriver/CHANGES.md')
-rw-r--r-- | node_modules/selenium-webdriver/CHANGES.md | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/node_modules/selenium-webdriver/CHANGES.md b/node_modules/selenium-webdriver/CHANGES.md index 1cdc96814..0260b0604 100644 --- a/node_modules/selenium-webdriver/CHANGES.md +++ b/node_modules/selenium-webdriver/CHANGES.md @@ -1,3 +1,28 @@ +## v3.4.0 + +### Notice + +This release requires [geckodriver 0.15.0](https://github.com/mozilla/geckodriver/releases/tag/v0.15.0) or newer. + +### API Changes + +* Added `Options#getTimeouts()` for retrieving the currently configured session + timeouts (i.e. implicit wait). This method will only work with W3C compatible + WebDriver implementations. +* Deprecated the `Timeouts` class in favor of `Options#setTimeouts()`, which + supports setting multiple timeouts at once. +* Added support for emulating different network conditions (e.g., offline, 2G, WiFi) on Chrome. + +### Changes for W3C WebDriver Spec Compliance + +* Fixed W3C response parsing, which expects response data to always be a JSON + object with a `value` key. +* Added W3C endpoints for interacting with various types of + [user prompts](https://w3c.github.io/webdriver/webdriver-spec.html#user-prompts). +* Added W3C endpoints for remotely executing scripts. +* Added W3C endpoints to get current window handle and all windows handles. + + ## v3.3.0 * Added warning log messages when the user creates new managed promises, or |