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
Wai Hon Law edited this page Aug 13, 2013
·
1 revision
Using WebDriverWait with WebDriverExpectedCondition
// wait for at most 10s for the page tile to be 'My Page'
// sleep for 500ms and retries if it the title is not correct.
$driver->wait(10, 500)->until(
WebDriverExpectedCondition::titleIs('My Page')
);