X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fbehat%2Fmink%2Fsrc%2FSelector%2FExactNamedSelector.php;fp=vendor%2Fbehat%2Fmink%2Fsrc%2FSelector%2FExactNamedSelector.php;h=03315a9cffa43fe152e5d4fac9ca7e2adcffdae0;hp=0000000000000000000000000000000000000000;hb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;hpb=57c063afa3f66b07c4bbddc2d6129a96d90f0aad diff --git a/vendor/behat/mink/src/Selector/ExactNamedSelector.php b/vendor/behat/mink/src/Selector/ExactNamedSelector.php new file mode 100644 index 000000000..03315a9cf --- /dev/null +++ b/vendor/behat/mink/src/Selector/ExactNamedSelector.php @@ -0,0 +1,29 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Behat\Mink\Selector; + +/** + * Exact match selector engine. Like the Named selector engine but ignores partial matches. + */ +class ExactNamedSelector extends NamedSelector +{ + public function __construct() + { + $this->registerReplacement('%tagTextMatch%', 'normalize-space(string(.)) = %locator%'); + $this->registerReplacement('%valueMatch%', './@value = %locator%'); + $this->registerReplacement('%titleMatch%', './@title = %locator%'); + $this->registerReplacement('%altMatch%', './@alt = %locator%'); + $this->registerReplacement('%relMatch%', './@rel = %locator%'); + $this->registerReplacement('%labelAttributeMatch%', './@label = %locator%'); + + parent::__construct(); + } +}