We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a7a2ac commit ad01c0dCopy full SHA for ad01c0d
java/src/org/openqa/selenium/Platform.java
@@ -289,6 +289,18 @@ public String toString() {
289
}
290
},
291
292
+ SONOMA("sonoma", "os x 14.0", "macos 14.0") {
293
+ @Override
294
+ public Platform family() {
295
+ return MAC;
296
+ }
297
+
298
299
+ public String toString() {
300
+ return "macOS 14.0";
301
302
+ },
303
304
/** Many platforms have UNIX traits, amongst them LINUX, Solaris and BSD. */
305
UNIX("solaris", "bsd") {
306
@Override
0 commit comments