_generated\AcceptanceTesterActions::cantSeeInPageSource PHP Method

cantSeeInPageSource() public method

Checks that the page source doesn't contain the given string.
See also: Codeception\Module\WebDriver::dontSeeInPageSource()
public cantSeeInPageSource ( $text )
$text Conditional Assertion: Test won't be stopped on fail
    public function cantSeeInPageSource($text)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeInPageSource', func_get_args()));
    }
AcceptanceTesterActions