_generated\AcceptanceTesterActions::seeInTitle PHP Method

seeInTitle() public method

Checks that the page title contains the given string. php seeInTitle('Blog - Post #1'); ?>
See also: Codeception\Module\WebDriver::seeInTitle()
public seeInTitle ( $title ) : mixed
$title
return mixed
    public function seeInTitle($title)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeInTitle', func_get_args()));
    }
AcceptanceTesterActions