_generated\AcceptanceTesterActions::dontSeeInSource PHP Method

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