public function CoreDriver::maximizeWindow in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/behat/mink/src/Driver/CoreDriver.php \Behat\Mink\Driver\CoreDriver::maximizeWindow()
Maximizes the window if it is not maximized already.
Parameters
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::maximizeWindow
File
- vendor/
behat/ mink/ src/ Driver/ CoreDriver.php, line 463
Class
- CoreDriver
- Core driver. All other drivers should extend this class for future compatibility.
Namespace
Behat\Mink\DriverCode
public function maximizeWindow($name = null) {
throw new UnsupportedDriverActionException('Window maximize is not supported by %s', $this);
}