_generated\AcceptanceTesterActions::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()));
    }
AcceptanceTesterActions