You are here

protected function CoreDriver::findElementXpaths 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::findElementXpaths()

Finds elements with specified XPath query.

Parameters

string $xpath:

Return value

string[] The XPath of the matched elements

Throws

UnsupportedDriverActionException When operation not supported by the driver

See also

find()

1 call to CoreDriver::findElementXpaths()
CoreDriver::find in vendor/behat/mink/src/Driver/CoreDriver.php
Finds elements with specified XPath query.
1 method overrides CoreDriver::findElementXpaths()
BrowserKitDriver::findElementXpaths in vendor/behat/mink-browserkit-driver/src/BrowserKitDriver.php
Finds elements with specified XPath query.

File

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

Class

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

Namespace

Behat\Mink\Driver

Code

protected function findElementXpaths($xpath) {
  throw new UnsupportedDriverActionException('Finding elements is not supported by %s', $this);
}