_generated\AcceptanceTesterActions::waitForElementVisible PHP Method

waitForElementVisible() public method

Waits up to $timeout seconds for the given element to be visible on the page. If element doesn't appear, a timeout exception is thrown. php waitForElementVisible('#agree_button', 30); // secs $I->click('#agree_button'); ?>
See also: Codeception\Module\WebDriver::waitForElementVisible()
public waitForElementVisible ( $element, integer $timeout = null )
$element
$timeout integer seconds
    public function waitForElementVisible($element, $timeout = null)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\Action('waitForElementVisible', func_get_args()));
    }
AcceptanceTesterActions