_generated\AcceptanceTesterActions::seeCurrentUrlMatches PHP Method

seeCurrentUrlMatches() public method

Checks that the current URL matches the given regular expression. php seeCurrentUrlMatches('~$/users/(\d+)~'); ?>
See also: Codeception\Module\WebDriver::seeCurrentUrlMatches()
public seeCurrentUrlMatches ( $uri )
$uri
    public function seeCurrentUrlMatches($uri)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeCurrentUrlMatches', func_get_args()));
    }
AcceptanceTesterActions