_generated\WebGuyActions::cantSeeInTitle PHP Метод

cantSeeInTitle() публичный метод

Checks that the page title does not contain the given string.
См. также: Codeception\Module\WebDriver::dontSeeInTitle()
public cantSeeInTitle ( $title ) : mixed
$title
Результат 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()));
    }
WebGuyActions