FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
php-webdriver/lib/Remote/WebDriverBrowserType.php at main · php-webdriver/php-webdriver · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
php-webdriver
/
php-webdriver
Public
Notifications
You must be signed in to change notification settings
Fork
842
Star
5.2k
Code
Issues
21
Pull requests
9
Discussions
Actions
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
php-webdriver
/
lib
/
Remote
/
WebDriverBrowserType.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
40 lines (37 loc) · 1.16 KB
Breadcrumbs
php-webdriver
/
lib
/
Remote
/
WebDriverBrowserType.php
Copy path
File metadata and controls
40 lines (37 loc) · 1.16 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
namespace
Facebook
\
WebDriver
\
Remote
;
/**
* All the browsers supported by selenium.
*
* @codeCoverageIgnore
*/
class
WebDriverBrowserType
{
public
const
FIREFOX
=
'
firefox
'
;
public
const
FIREFOX_PROXY
=
'
firefoxproxy
'
;
public
const
FIREFOX_CHROME
=
'
firefoxchrome
'
;
public
const
GOOGLECHROME
=
'
googlechrome
'
;
public
const
SAFARI
=
'
safari
'
;
public
const
SAFARI_PROXY
=
'
safariproxy
'
;
public
const
OPERA
=
'
opera
'
;
public
const
MICROSOFT_EDGE
=
'
MicrosoftEdge
'
;
public
const
IEXPLORE
=
'
iexplore
'
;
public
const
IEXPLORE_PROXY
=
'
iexploreproxy
'
;
public
const
CHROME
=
'
chrome
'
;
public
const
KONQUEROR
=
'
konqueror
'
;
public
const
MOCK
=
'
mock
'
;
public
const
IE_HTA
=
'
iehta
'
;
public
const
ANDROID
=
'
android
'
;
public
const
HTMLUNIT
=
'
htmlunit
'
;
public
const
IE
=
'
internet explorer
'
;
public
const
IPHONE
=
'
iphone
'
;
public
const
IPAD
=
'
iPad
'
;
/**
* @deprecated PhantomJS is no longer developed and its support will be removed in next major version.
* Use headless Chrome or Firefox instead.
*/
public
const
PHANTOMJS
=
'
phantomjs
'
;
private
function
__construct
()
{
}
}
Back
|
FazBrowse Home
|
New Git URL