_generated\AcceptanceTesterActions::cantSeeInTitle PHP Méthode

cantSeeInTitle() public méthode

Checks that the page title does not contain the given string.
See also: Codeception\Module\WebDriver::dontSeeInTitle()
public cantSeeInTitle ( $title ) : mixed
$title
Résultat 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