You are here

public function CoreDriver::isChecked 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::isChecked()

Checks whether checkbox or radio button located by it's XPath query is checked.

Parameters

string $xpath:

Return value

Boolean

Throws

UnsupportedDriverActionException When operation not supported by the driver

DriverException When the operation cannot be done

Overrides DriverInterface::isChecked

See also

\Behat\Mink\Element\NodeElement::isChecked

1 method overrides CoreDriver::isChecked()
BrowserKitDriver::isChecked in vendor/behat/mink-browserkit-driver/src/BrowserKitDriver.php
Checks whether checkbox or radio button located by it's XPath query is checked.

File

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

Class

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

Namespace

Behat\Mink\Driver

Code

public function isChecked($xpath) {
  throw new UnsupportedDriverActionException('Getting the state of a checkbox is not supported by %s', $this);
}