_generated\AcceptanceTesterActions::canSeeElementInDOM PHP Method

canSeeElementInDOM() public method

Checks that the given element exists on the page, even it is invisible. php seeElementInDOM('//form/input[type=hidden]'); ?>
See also: Codeception\Module\WebDriver::seeElementInDOM()
public canSeeElementInDOM ( $selector, $attributes = null )
$selector Conditional Assertion: Test won't be stopped on fail
    public function canSeeElementInDOM($selector, $attributes = null)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeElementInDOM', func_get_args()));
    }
AcceptanceTesterActions