public function DriverInterface::stop in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/behat/mink/src/Driver/DriverInterface.php \Behat\Mink\Driver\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.
Throws
DriverException When the driver cannot be closed
1 method overrides DriverInterface::stop()
- CoreDriver::stop in vendor/
behat/ mink/ src/ Driver/ CoreDriver.php - Stops driver.
File
- vendor/
behat/ mink/ src/ Driver/ DriverInterface.php, line 74
Class
- DriverInterface
- Driver interface.
Namespace
Behat\Mink\DriverCode
public function stop();