Skip to content

Instantly share code, notes, and snippets.

@serapheem
Created September 3, 2013 12:41
Show Gist options
  • Save serapheem/6423402 to your computer and use it in GitHub Desktop.
Save serapheem/6423402 to your computer and use it in GitHub Desktop.
Selenium2 - Delay of assertions
<?php
testDisplay()
{
...
//I use 25000 for the timeout but anything else works too it depends on your loading page
$this->timeouts()->implicitWait(25000);
$this->assertContains('toto42', $this->source());
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment