Security update for permissions_by_term
[yaffs-website] / vendor / instaclick / php-webdriver / lib / WebDriver / Browser.php
1 <?php
2 /**
3  * Copyright 2011-2017 Fabrizio Branca. All Rights Reserved.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * @package WebDriver
18  *
19  * @author Fabrizio Branca <mail@fabrizio-branca.de>
20  * @author Anthon Pang <apang@softwaredevelopment.ca>
21  */
22
23 namespace WebDriver;
24
25 /**
26  * WebDriver\Browser class
27  *
28  * @package WebDriver
29  */
30 final class Browser
31 {
32     /**
33      * Check browser names used in static functions in the selenium source:
34      * @see http://code.google.com/p/selenium/source/browse/java/client/src/org/openqa/selenium/remote/DesiredCapabilities.java
35      *
36      * Note: Capability array takes these browserNames and not the "browserTypes"
37      *
38      * Also check
39      * @see http://code.google.com/p/selenium/wiki/JsonWireProtocol#Capabilities_JSON_Object
40      */
41     const ANDROID           = 'android';
42     const CHROME            = 'chrome';
43     const FIREFOX           = 'firefox';
44     const HTMLUNIT          = 'htmlunit';
45     const IE                = 'internet explorer';
46     const INTERNET_EXPLORER = 'internet explorer';
47     const IPHONE            = 'iPhone';
48     const IPAD              = 'iPad';
49     const OPERA             = 'opera';
50     const PHANTOMJS         = 'phantomjs';
51     const SAFARI            = 'safari';
52 }