Skip to content
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')
);
Clone this wiki locally