Skip to content

Commit 7720dd8

Browse files
committed
adding Windows 8.1 platform, so we can use it in saucelabs for IE11 testing
1 parent 7268c78 commit 7720dd8

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Diff for: java/client/src/org/openqa/selenium/Platform.java

+7
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,13 @@ public boolean is(Platform compareWith) {
7171
}
7272
},
7373

74+
WIN8_1("Windows 8.1", "win8.1") {
75+
@Override
76+
public boolean is(Platform compareWith) {
77+
return compareWith == WINDOWS || compareWith == WIN8_1;
78+
}
79+
},
80+
7481
MAC("mac", "darwin") {},
7582

7683
/**

0 commit comments

Comments
 (0)