Skip to content

Commit e7fdca3

Browse files
committed
Bump webdriverjs to 2.45.1
Includes a doc refresh to pick up API additions.
1 parent 2d0eea9 commit e7fdca3

25 files changed

+71
-36
lines changed

docs/api/javascript/Changes.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
<!DOCTYPE html><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no"><meta http-equiv="Content-Language" content="en"><meta http-equiv="X-UA-Compatible" content="IE=edge"><title>Changes</title><link href="dossier.css" rel="stylesheet" type="text/css"><header><div><form><div><input type="search" placeholder="Search"></div></form></div></header><main><article class="indexfile"><h2>v2.45.0</h2><h3>Important Policy Change</h3><p>Starting with the 2.45.0 release, selenium-webdriver will support the last two stable minor releases for Node. For 2.45.0, this means Selenium will support Node 0.10.x and 0.12.x. Support for the intermediate, un-stable release (0.11.x) is &#34;best-effort&#34;. This policy will be re-evaluated once Node has a major version release (i.e. 1.0.0).</p><h3>Change Summary</h3>
1+
<!DOCTYPE html><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no"><meta http-equiv="Content-Language" content="en"><meta http-equiv="X-UA-Compatible" content="IE=edge"><title>Changes</title><link href="dossier.css" rel="stylesheet" type="text/css"><header><div><form><div><input type="search" placeholder="Search"></div></form></div></header><main><article class="indexfile"><h2>v2.45.1</h2>
2+
<ul><li>FIXED: 8548: Task callbacks are once again dropped if the task was cancelled due to a previously uncaught error within the frame.</li><li>FIXED: 8496: Extended the <code>chrome.Options</code> API to cover all configuration options (e.g. mobile emulation and performance logging) documented on the ChromeDriver <a href="https://sites.google.com/a/chromium.org/chromedriver/capabilities">project site</a>.</li></ul><h2>v2.45.0</h2><h3>Important Policy Change</h3><p>Starting with the 2.45.0 release, selenium-webdriver will support the last two stable minor releases for Node. For 2.45.0, this means Selenium will support Node 0.10.x and 0.12.x. Support for the intermediate, un-stable release (0.11.x) is &#34;best-effort&#34;. This policy will be re-evaluated once Node has a major version release (i.e. 1.0.0).</p><h3>Change Summary</h3>
23
<ul><li>Added native browser support for Internet Explorer, Opera 26&#43;, and Safari</li><li>With the release of <a href="http://blog.nodejs.org/2015/02/06/node-v0-12-0-stable/">Node 0.12.0</a> (finally!), the minimum supported version of Node is now <code>0.10.x</code>.</li><li><p>The <code>promise</code> module is now <a href="https://promisesaplus.com/">Promises/A&#43;</a> compliant. The biggest compliance change is that promise callbacks are now invoked in a future turn of the JS event loop. For example:</p>
34
<pre><code>var promise &#61; require(&#39;selenium-webdriver&#39;).promise;
45
console.log(&#39;start&#39;);

docs/api/javascript/class_webdriver_Capabilities.html

+1-1
Large diffs are not rendered by default.

docs/api/javascript/class_webdriver_promise_Callback_.html

+2-2
Large diffs are not rendered by default.

docs/api/javascript/class_webdriver_promise_Frame_.html

+2-2
Large diffs are not rendered by default.

docs/api/javascript/class_webdriver_promise_Task_.html

+2-2
Large diffs are not rendered by default.

docs/api/javascript/class_webdriver_stacktrace_Frame.html

+1-1
Large diffs are not rendered by default.

docs/api/javascript/class_webdriver_stacktrace_Snapshot.html

+1-1
Large diffs are not rendered by default.

docs/api/javascript/module_selenium-webdriver_chrome.html

+22-3
Large diffs are not rendered by default.

docs/api/javascript/module_selenium-webdriver_chrome_class_Driver.html

+2-2
Large diffs are not rendered by default.

docs/api/javascript/module_selenium-webdriver_chrome_class_Options.html

+17-2
Large diffs are not rendered by default.

docs/api/javascript/module_selenium-webdriver_chrome_class_ServiceBuilder.html

+1-1
Large diffs are not rendered by default.

docs/api/javascript/module_selenium-webdriver_class_Capabilities.html

+1-1
Large diffs are not rendered by default.

docs/api/javascript/module_selenium-webdriver_namespace_promise.html

+3-3
Large diffs are not rendered by default.

docs/api/javascript/module_selenium-webdriver_namespace_stacktrace.html

+1-1
Large diffs are not rendered by default.

docs/api/javascript/namespace_webdriver_promise.html

+3-3
Large diffs are not rendered by default.

docs/api/javascript/namespace_webdriver_stacktrace.html

+1-1
Large diffs are not rendered by default.

docs/api/javascript/source/chrome.js.src.html

+1-1
Large diffs are not rendered by default.

docs/api/javascript/source/lib/atoms/json.js.src.html

+1-1
Large diffs are not rendered by default.

docs/api/javascript/source/lib/goog/deps.js.src.html

+1-1
Large diffs are not rendered by default.

docs/api/javascript/source/lib/webdriver/capabilities.js.src.html

+1-1
Large diffs are not rendered by default.

docs/api/javascript/source/lib/webdriver/promise.js.src.html

+1-1
Large diffs are not rendered by default.

docs/api/javascript/source/lib/webdriver/stacktrace.js.src.html

+1-1
Large diffs are not rendered by default.

docs/api/javascript/types.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

javascript/node/selenium-webdriver/CHANGES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## v2.45.1-dev
1+
## v2.45.1
22

33
* FIXED: 8548: Task callbacks are once again dropped if the task was cancelled
44
due to a previously uncaught error within the frame.

javascript/node/selenium-webdriver/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "selenium-webdriver",
3-
"version": "2.45.1-dev",
3+
"version": "2.45.1",
44
"description": "The official WebDriver JavaScript bindings from the Selenium project",
55
"keywords": [
66
"automation",

0 commit comments

Comments
 (0)