_generated\AcceptanceTesterActions::canSeeCurrentUrlMatches PHP 메소드

canSeeCurrentUrlMatches() 공개 메소드

Checks that the current URL matches the given regular expression. php seeCurrentUrlMatches('~$/users/(\d+)~'); ?>
또한 보기: Codeception\Module\WebDriver::seeCurrentUrlMatches()
public canSeeCurrentUrlMatches ( $uri )
$uri Conditional Assertion: Test won't be stopped on fail
    public function canSeeCurrentUrlMatches($uri)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeCurrentUrlMatches', func_get_args()));
    }
AcceptanceTesterActions