File tree Expand file tree Collapse file tree 2 files changed +2
-14
lines changed
selenium/webdriver/common
test/unit/selenium/webdriver/remote Expand file tree Collapse file tree 2 files changed +2
-14
lines changed Original file line number Diff line number Diff line change @@ -55,32 +55,24 @@ class DesiredCapabilities(object):
55
55
56
56
INTERNETEXPLORER = {
57
57
"browserName" : "internet explorer" ,
58
- "version" : "" ,
59
- "platform" : "WINDOWS" ,
58
+ "platformName" : "WINDOWS" ,
60
59
}
61
60
62
61
EDGE = {
63
62
"browserName" : "MicrosoftEdge" ,
64
- "version" : "" ,
65
- "platform" : "ANY"
66
63
}
67
64
68
65
CHROME = {
69
66
"browserName" : "chrome" ,
70
- "version" : "" ,
71
- "platform" : "ANY" ,
72
67
}
73
68
74
69
OPERA = {
75
70
"browserName" : "opera" ,
76
- "version" : "" ,
77
- "platform" : "ANY" ,
78
71
}
79
72
80
73
SAFARI = {
81
74
"browserName" : "safari" ,
82
- "version" : "" ,
83
- "platform" : "MAC" ,
75
+ "platformName" : "MAC" ,
84
76
}
85
77
86
78
HTMLUNIT = {
Original file line number Diff line number Diff line change @@ -87,8 +87,6 @@ def test_always_match_if_2_of_the_same_options():
87
87
"alwaysMatch" : {
88
88
"browserName" : "chrome" ,
89
89
"pageLoadStrategy" : "normal" ,
90
- "platform" : "ANY" ,
91
- "version" : ""
92
90
},
93
91
"firstMatch" : [
94
92
{"goog:chromeOptions" : {"args" : ["foo" ], "extensions" : []}},
@@ -109,8 +107,6 @@ def test_first_match_when_2_different_option_types():
109
107
"alwaysMatch" : {"pageLoadStrategy" : "normal" },
110
108
"firstMatch" : [
111
109
{"browserName" : "chrome" ,
112
- "platform" : "ANY" ,
113
- "version" : "" ,
114
110
"goog:chromeOptions" : {"extensions" : [], "args" : []}},
115
111
{"browserName" : "firefox" ,
116
112
"acceptInsecureCerts" : True ,
You can’t perform that action at this time.
0 commit comments