_generated\AcceptanceTesterActions::amOnUrl PHP Method

amOnUrl() public method

Open web page at the given absolute URL and sets its hostname as the base host. php amOnUrl('http://codeception.com'); $I->amOnPage('/quickstart'); // moves to http://codeception.com/quickstart ?>
See also: Codeception\Module\WebDriver::amOnUrl()
public amOnUrl ( $url )
    public function amOnUrl($url)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\Condition('amOnUrl', func_get_args()));
    }
AcceptanceTesterActions