function DriverInterface::stop
Stops driver.
Once stopped, the driver should be started again before using it again.
Calling any action on a stopped driver is an undefined behavior. The only supported method call after stopping a driver is starting it again.
Calling stop on a stopped driver is an undefined behavior. Driver implementations are free to handle it silently or to fail with an exception.
Return value
void
Throws
DriverException When the driver cannot be closed
1 method overrides DriverInterface::stop()
- CoreDriver::stop in vendor/
behat/ mink/ src/ Driver/ CoreDriver.php
File
-
vendor/
behat/ mink/ src/ Driver/ DriverInterface.php, line 81
Class
- DriverInterface
- Driver interface.
Namespace
Behat\Mink\DriverCode
public function stop();