Skip to content

Commit 0bbb132

Browse files
committed
Update release notes for js
1 parent b5986f5 commit 0bbb132

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

javascript/node/selenium-webdriver/CHANGES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
## v2.44.0-dev
22

3+
* Added the `until` module, which defines common explicit wait conditions.
4+
Sample usage:
5+
6+
var firefox = require('selenium-webdriver/firefox'),
7+
until = require('selenium-webdriver/until');
8+
9+
var driver = new firefox.Driver();
10+
driver.get('http://www.google.com/ncr');
11+
driver.wait(until.titleIs('Google Search'), 1000);
12+
313
* FIXED: 8000: `Builder.forBrowser()` now accepts an empty string since some
414
WebDriver implementations ignore the value. A value must still be specified,
515
however, since it is a required field in WebDriver's wire protocol.

0 commit comments

Comments
 (0)