We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5986f5 commit 0bbb132Copy full SHA for 0bbb132
javascript/node/selenium-webdriver/CHANGES.md
@@ -1,5 +1,15 @@
1
## v2.44.0-dev
2
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
13
* FIXED: 8000: `Builder.forBrowser()` now accepts an empty string since some
14
WebDriver implementations ignore the value. A value must still be specified,
15
however, since it is a required field in WebDriver's wire protocol.
0 commit comments