_generated\AcceptanceTesterActions::cantSeeInSource PHP Method

cantSeeInSource() public method

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

Green eggs & ham

');
See also: 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