* @author Anthon Pang */ namespace WebDriver; /** * WebDriver\Browser class * * @package WebDriver */ final class Browser { /** * @see https://github.com/SeleniumHQ/selenium/blob/trunk/java/src/org/openqa/selenium/remote/Browser.java */ const CHROME = 'chrome'; const EDGE = 'MicrosoftEdge'; const FIREFOX = 'firefox'; const HTMLUNIT = 'htmlunit'; const IE = 'internet explorer'; const OPERA = 'opera'; const SAFARI = 'safari'; const SAFARI_TECH_PREVIEW = 'Safari Technology Preview'; /** * @see https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/webdriver/capabilities.js * @deprecated */ const ANDROID = 'android'; const EDGEHTML = 'EdgeHTML'; const INTERNET_EXPLORER = 'internet explorer'; const IPAD = 'iPad'; const IPHONE = 'iPhone'; const MSEDGE = 'MicrosoftEdge'; const OPERA_BLINK = 'operablink'; const PHANTOM_JS = 'phantomjs'; const PHANTOMJS = 'phantomjs'; }