15 lines
330 B
PHP
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");
|
|
}
|
|
}
|