public function WebAssertTest::getArrayLocatorFormats in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/behat/mink/tests/WebAssertTest.php \Behat\Mink\Tests\WebAssertTest::getArrayLocatorFormats()
File
- vendor/
behat/ mink/ tests/ WebAssertTest.php, line 714
Class
Namespace
Behat\Mink\TestsCode
public function getArrayLocatorFormats() {
return array(
'named' => array(
'named',
array(
'button',
'Test',
),
'An button matching locator "Test" appears on this page, but it should not.',
),
'custom' => array(
'custom',
array(
'test',
'foo',
),
'An element matching custom "test foo" appears on this page, but it should not.',
),
);
}