public function DriverInterface::resizeWindow in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/behat/mink/src/Driver/DriverInterface.php \Behat\Mink\Driver\DriverInterface::resizeWindow()
Set the dimensions of the window.
Parameters
int $width set the window width, measured in pixels:
int $height set the window height, measured in pixels:
string $name window name (null for the main window):
Throws
UnsupportedDriverActionException When operation not supported by the driver
DriverException When the operation cannot be done
1 method overrides DriverInterface::resizeWindow()
- CoreDriver::resizeWindow in vendor/
behat/ mink/ src/ Driver/ CoreDriver.php - Set the dimensions of the window.
File
- vendor/
behat/ mink/ src/ Driver/ DriverInterface.php, line 614
Class
- DriverInterface
- Driver interface.
Namespace
Behat\Mink\DriverCode
public function resizeWindow($width, $height, $name = null);