Skip to content

Commit ad01c0d

Browse files
committed
[java] add macOS 14.0 to Platform
1 parent 5a7a2ac commit ad01c0d

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,18 @@ public String toString() {
289289
}
290290
},
291291

292+
SONOMA("sonoma", "os x 14.0", "macos 14.0") {
293+
@Override
294+
public Platform family() {
295+
return MAC;
296+
}
297+
298+
@Override
299+
public String toString() {
300+
return "macOS 14.0";
301+
}
302+
},
303+
292304
/** Many platforms have UNIX traits, amongst them LINUX, Solaris and BSD. */
293305
UNIX("solaris", "bsd") {
294306
@Override

0 commit comments

Comments
 (0)