_generated\AcceptanceTesterActions::dontSeeInCurrentUrl PHP Method

dontSeeInCurrentUrl() public method

Checks that the current URI doesn't contain the given string. php dontSeeInCurrentUrl('/users/'); ?>
See also: Codeception\Module\WebDriver::dontSeeInCurrentUrl()
public dontSeeInCurrentUrl ( $uri )
$uri
    public function dontSeeInCurrentUrl($uri)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeInCurrentUrl', func_get_args()));
    }
AcceptanceTesterActions