Skip to content

Commit 1c37c72

Browse files
ngsankhaddavison
authored andcommitted
Include Windows 10 in the Platform enum.
Fixes #669. Signed-off-by: Daniel Davison <daniel.jj.davison@gmail.com>
1 parent 87c4e91 commit 1c37c72

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

java/client/src/org/openqa/selenium/Platform.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,13 @@ public Platform family() {
7272
}
7373
},
7474

75+
WIN10("windows 10", "win10") {
76+
@Override
77+
public Platform family() {
78+
return WINDOWS;
79+
}
80+
},
81+
7582
MAC("mac", "darwin", "os x") {},
7683

7784
SNOW_LEOPARD("snow leopard", "os x 10.6") {

0 commit comments

Comments
 (0)