_generated\AcceptanceTesterActions::cantSeeInSource PHP 메소드

cantSeeInSource() 공개 메소드

Checks that the current page contains the given string in its raw source code. php dontSeeInSource('

Green eggs & ham

');
또한 보기: Codeception\Module\WebDriver::dontSeeInSource()
public cantSeeInSource ( $raw )
$raw Conditional Assertion: Test won't be stopped on fail
    public function cantSeeInSource($raw)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeInSource', func_get_args()));
    }
AcceptanceTesterActions