X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Finstaclick%2Fphp-webdriver%2Flib%2FWebDriver%2FLocatorStrategy.php;fp=vendor%2Finstaclick%2Fphp-webdriver%2Flib%2FWebDriver%2FLocatorStrategy.php;h=1d7dea9d903d0ac24f345e0652a388ce77066110;hp=0000000000000000000000000000000000000000;hb=1270d9129ce8f27c9b28b10518e32132c58e0aca;hpb=c27c0f0cdaa3f354b1fe54a56ae7e854be6e3f68 diff --git a/vendor/instaclick/php-webdriver/lib/WebDriver/LocatorStrategy.php b/vendor/instaclick/php-webdriver/lib/WebDriver/LocatorStrategy.php new file mode 100644 index 000000000..1d7dea9d9 --- /dev/null +++ b/vendor/instaclick/php-webdriver/lib/WebDriver/LocatorStrategy.php @@ -0,0 +1,40 @@ + + * @author Anthon Pang + */ + +namespace WebDriver; + +/** + * WebDriver\LocatorStrategy class + * + * @package WebDriver + */ +final class LocatorStrategy +{ + const CLASS_NAME = 'class name'; + const CSS_SELECTOR = 'css selector'; + const ID = 'id'; + const NAME = 'name'; + const LINK_TEXT = 'link text'; + const PARTIAL_LINK_TEXT = 'partial link text'; + const TAG_NAME = 'tag name'; + const XPATH = 'xpath'; +}