E2E\WebDriverShortcuts::waitUntil PHP Method

waitUntil() protected method

Wait until a condition is met.
protected waitUntil ( $func, integer $timeout = 10 )
$func (closure|WebDriverExpectedCondition)
$timeout integer
    protected function waitUntil($func, $timeout = 10)
    {
        $this->driver->wait($timeout)->until($func);
        return $this;
    }