1<?php 2 3namespace Facebook\WebDriver\Remote; 4 5/** 6 * All the browsers supported by selenium. 7 * 8 * @codeCoverageIgnore 9 */ 10class WebDriverBrowserType 11{ 12 const FIREFOX = 'firefox'; 13 const FIREFOX_PROXY = 'firefoxproxy'; 14 const FIREFOX_CHROME = 'firefoxchrome'; 15 const GOOGLECHROME = 'googlechrome'; 16 const SAFARI = 'safari'; 17 const SAFARI_PROXY = 'safariproxy'; 18 const OPERA = 'opera'; 19 const MICROSOFT_EDGE = 'MicrosoftEdge'; 20 const IEXPLORE = 'iexplore'; 21 const IEXPLORE_PROXY = 'iexploreproxy'; 22 const CHROME = 'chrome'; 23 const KONQUEROR = 'konqueror'; 24 const MOCK = 'mock'; 25 const IE_HTA = 'iehta'; 26 const ANDROID = 'android'; 27 const HTMLUNIT = 'htmlunit'; 28 const IE = 'internet explorer'; 29 const IPHONE = 'iphone'; 30 const IPAD = 'iPad'; 31 /** 32 * @deprecated PhantomJS is no longer developed and its support will be removed in next major version. 33 * Use headless Chrome or Firefox instead. 34 */ 35 const PHANTOMJS = 'phantomjs'; 36 37 private function __construct() 38 { 39 } 40} 41