FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
php-webdriver/lib/WebDriverCapabilities.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
/
WebDriverCapabilities.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
46 lines (38 loc) · 1.04 KB
Breadcrumbs
php-webdriver
/
lib
/
WebDriverCapabilities.php
Copy path
File metadata and controls
46 lines (38 loc) · 1.04 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
41
42
43
44
45
46
<?php
namespace
Facebook
\
WebDriver
;
interface
WebDriverCapabilities
{
/**
* @return string The name of the browser.
*/
public
function
getBrowserName
();
/**
* @param string $name
* @return mixed The value of a capability.
*/
public
function
getCapability
(
$
name
);
/**
* @return string The name of the platform.
*/
public
function
getPlatform
();
/**
* @return string The version of the browser.
*/
public
function
getVersion
();
/**
* @param string $capability_name
* @return bool Whether the value is not null and not false.
*/
public
function
is
(
$
capability_name
);
/**
* @todo Remove in next major release (BC)
* @deprecated All browsers are always JS enabled except HtmlUnit and it's not meaningful to disable JS execution.
* @return bool Whether javascript is enabled.
*/
public
function
isJavascriptEnabled
();
// TODO: Add in next major release (BC)
///**
// * @return array
// */
//public function toArray();
}
Back
|
FazBrowse Home
|
New Git URL