_generated\AcceptanceTesterActions::dontSeeCurrentUrlEquals PHP Method

dontSeeCurrentUrlEquals() public method

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