_generated\FunctionalTesterActions::cantSeeInSource PHP Метод

cantSeeInSource() публичный метод

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

Green eggs & ham

');
См. также: Codeception\Lib\InnerBrowser::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()));
    }
FunctionalTesterActions