You are here

public function CoreDriver::isStarted in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/behat/mink/src/Driver/CoreDriver.php \Behat\Mink\Driver\CoreDriver::isStarted()

Checks whether driver is started.

Return value

Boolean

Overrides DriverInterface::isStarted

1 method overrides CoreDriver::isStarted()
BrowserKitDriver::isStarted in vendor/behat/mink-browserkit-driver/src/BrowserKitDriver.php
Checks whether driver is started.

File

vendor/behat/mink/src/Driver/CoreDriver.php, line 49

Class

CoreDriver
Core driver. All other drivers should extend this class for future compatibility.

Namespace

Behat\Mink\Driver

Code

public function isStarted() {
  throw new UnsupportedDriverActionException('Checking the driver state is not supported by %s', $this);
}