_generated\AcceptanceTesterActions::seeElementInDOM PHP 메소드

seeElementInDOM() 공개 메소드

Checks that the given element exists on the page, even it is invisible. php seeElementInDOM('//form/input[type=hidden]'); ?>
또한 보기: 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