-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcapabilities.go
43 lines (41 loc) · 1.12 KB
/
capabilities.go
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
package marionette_client
type Capabilities struct {
BrowserName string
BrowserVersion string
PlatformName string
PlatformVersion string
SpecificationLevel uint
RaisesAccessibilityExceptions bool
Rotatable bool
AcceptSslCerts bool
TakesElementScreenshot bool
TakesScreenshot bool
Proxy interface{}
Platform string
XULappId string
AppBuildId string
Device string
Version string
Command_id uint32
}
/*
{"capabilities":
{
"browserName":"firefox",
"browserVersion":"53.0.3",
"platformName":"linux",
"platformVersion":"4.8.12-040812-generic",
"pageLoadStrategy":"normal",
"acceptInsecureCerts":false,
"timeouts":{
"implicit":0,
"pageLoad":300000,
"script":30000
},
"rotatable":false,
"specificationLevel":0,
"moz:processID":2004,
"moz:profile":"/home/travis/.mozilla/firefox/594k4686.default",
"moz:accessibilityChecks":false
}
}**/