Skip to content

Commit 370703f

Browse files
committed
[js] Introduce the SELENIUM_PROMISE_MANAGER environment variable, which can be
set to 0 to disable use of the promise manager. Full details and motivation behind this change can be found in #2969
1 parent 332e45f commit 370703f

39 files changed

+5313
-5092
lines changed

javascript/node/selenium-webdriver/CHANGES.md

+4
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616
"moz:firefoxOptions" dictionary for Firefox-specific configuration values.
1717
* Extending the `selenium-webdriver/testing` module to support tests defined
1818
using generator functions.
19+
* The promise manager can be disabled by setting an enviornment variable:
20+
`SELENIUM_PROMISE_MANAGER=0`. This is part of a larger plan to remove the
21+
promise manager, as documented at
22+
<https://github.com/SeleniumHQ/selenium/issues/2969>
1923

2024

2125
### API Changes

javascript/node/selenium-webdriver/example/google_search.js

+7-9
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,14 @@
3535
* node selenium-webdriver/example/google_search.js
3636
*/
3737

38-
var webdriver = require('..'),
39-
By = webdriver.By,
40-
until = webdriver.until;
38+
const {Builder, By, until} = require('..');
4139

42-
var driver = new webdriver.Builder()
40+
var driver = new Builder()
4341
.forBrowser('firefox')
4442
.build();
4543

46-
driver.get('http://www.google.com/ncr');
47-
driver.findElement(By.name('q')).sendKeys('webdriver');
48-
driver.findElement(By.name('btnG')).click();
49-
driver.wait(until.titleIs('webdriver - Google Search'), 1000);
50-
driver.quit();
44+
driver.get('http://www.google.com/ncr')
45+
.then(_ => driver.findElement(By.name('q')).sendKeys('webdriver'))
46+
.then(_ => driver.findElement(By.name('btnG')).click())
47+
.then(_ => driver.wait(until.titleIs('webdriver - Google Search'), 1000))
48+
.then(_ => driver.quit());

javascript/node/selenium-webdriver/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,7 @@ class Builder {
594594
* __Note:__ this method is purely a convenience wrapper around
595595
* {@link #build()}.
596596
*
597-
* @return {!promise.Promise<!webdriver.WebDriver>} A promise that will be
597+
* @return {!promise.Thenable<!webdriver.WebDriver>} A promise that will be
598598
* fulfilled with the newly created WebDriver instance once the browser
599599
* has been fully initialized.
600600
* @see #build()

0 commit comments

Comments
 (0)