Skip to content

Commit 68ee8e0

Browse files
abidemashs96c
authored andcommitted
Adding support for OSX mojave to grid (#6552)
Add a `MOJAVE` constant to the `Platform` enum. Fixes: #6467
1 parent d1e114b commit 68ee8e0

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

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

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,17 @@ public String toString() {
168168
}
169169
},
170170

171+
MOJAVE("mojave", "os x 10.14", "macos 10.14") {
172+
@Override
173+
public Platform family() {
174+
return MAC;
175+
}
176+
@Override
177+
public String toString() {
178+
return "macOS 10.14";
179+
}
180+
},
181+
171182
/**
172183
* Many platforms have UNIX traits, amongst them LINUX, Solaris and BSD.
173184
*/

0 commit comments

Comments
 (0)