_generated\AcceptanceTesterActions::seeElementInDOM PHP Method

seeElementInDOM() 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 seeElementInDOM ( $selector, $attributes = null )
$selector
    public function seeElementInDOM($selector, $attributes = null)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeElementInDOM', func_get_args()));
    }
AcceptanceTesterActions