public function SelectorsHandlerTest::testXpathSelectorThrowsExceptionForArrayLocator in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/behat/mink/tests/Selector/SelectorsHandlerTest.php \Behat\Mink\Tests\Selector\SelectorsHandlerTest::testXpathSelectorThrowsExceptionForArrayLocator()
@expectedException \InvalidArgumentException
File
- vendor/
behat/ mink/ tests/ Selector/ SelectorsHandlerTest.php, line 43
Class
Namespace
Behat\Mink\Tests\SelectorCode
public function testXpathSelectorThrowsExceptionForArrayLocator() {
$handler = new SelectorsHandler();
$handler
->selectorToXpath('xpath', array(
'some_xpath',
));
}