_generated\FunctionalTesterActions::canSeeInTitle PHP Méthode

canSeeInTitle() public méthode

Checks that the page title contains the given string. php seeInTitle('Blog - Post #1'); ?>
See also: Codeception\Lib\InnerBrowser::seeInTitle()
public canSeeInTitle ( $title ) : mixed
$title
Résultat mixed Conditional Assertion: Test won't be stopped on fail
    public function canSeeInTitle($title)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeInTitle', func_get_args()));
    }
FunctionalTesterActions