public function CoreDriver::resizeWindow in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/behat/mink/src/Driver/CoreDriver.php \Behat\Mink\Driver\CoreDriver::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
Overrides DriverInterface::resizeWindow
File
- vendor/
behat/ mink/ src/ Driver/ CoreDriver.php, line 455
Class
- CoreDriver
- Core driver. All other drivers should extend this class for future compatibility.
Namespace
Behat\Mink\DriverCode
public function resizeWindow($width, $height, $name = null) {
throw new UnsupportedDriverActionException('Window resizing is not supported by %s', $this);
}