Files
friends-of-behat-mink-exten…/features/bootstrap/FeatureContext.php
2012-05-06 21:13:51 +02:00

15 lines
330 B
PHP

<?php
use Behat\MinkExtension\Context\MinkContext;
class FeatureContext extends MinkContext
{
/**
* @Then /^I wait for the suggestion box to appear$/
*/
public function iWaitForTheSuggestionBoxToAppear()
{
$this->getSession()->wait(5000, "$('.suggestions-results').children().length > 0");
}
}