_generated\AcceptanceTesterActions::cantSeeInTitle PHP Method

cantSeeInTitle() public method

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