_generated\AcceptanceTesterActions::dontSeeInTitle PHP Method

dontSeeInTitle() public method

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