_generated\TestGuyActions::amOnSubdomain PHP Method

amOnSubdomain() public method

Changes the subdomain for the 'url' configuration parameter. Does not open a page; use amOnPage for that. php amOnSubdomain('user'); $I->amOnPage('/'); moves to http://user.mysite.com/ ?>
See also: Codeception\Module\PhpBrowser::amOnSubdomain()
public amOnSubdomain ( $subdomain ) : mixed
$subdomain
return mixed
    public function amOnSubdomain($subdomain)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\Condition('amOnSubdomain', func_get_args()));
    }
TestGuyActions