_generated\WebGuyActions::waitForElementNotVisible PHP Method

waitForElementNotVisible() public method

Waits up to $timeout seconds for the given element to become invisible. If element stays visible, a timeout exception is thrown. php waitForElementNotVisible('#agree_button', 30); // secs ?>
See also: Codeception\Module\WebDriver::waitForElementNotVisible()
public waitForElementNotVisible ( $element, integer $timeout = null )
$element
$timeout integer seconds
    public function waitForElementNotVisible($element, $timeout = null)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\Action('waitForElementNotVisible', func_get_args()));
    }
WebGuyActions