_generated\AcceptanceTesterActions::resizeWindow PHP Method

resizeWindow() public method

Resize the current window. php resizeWindow(800, 600);
See also: Codeception\Module\WebDriver::resizeWindow()
public resizeWindow ( integer $width, integer $height )
$width integer
$height integer
    public function resizeWindow($width, $height)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\Action('resizeWindow', func_get_args()));
    }
AcceptanceTesterActions