You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adding common conditions for explicit waits in WebDriverJS
Similar in concept to ExpectedConditions from Java:
driver.wait(until.elementLocated(By.id('foo'), 2000)
.then(function(el) { el.click(); });
driver.wait(until.titleIs('Hello, world!'), 5000);
Fixes issue 5855
0 commit comments