Skip to content

Commit

Permalink
[java] Adding ventura as platform
Browse files Browse the repository at this point in the history
  • Loading branch information
diemol committed Apr 28, 2023
1 parent 0c02532 commit 46f300c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions java/src/org/openqa/selenium/Platform.java
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,18 @@ public String toString() {
}
},

VENTURA("ventura", "os x 13.0", "macos 13.0") {
@Override
public Platform family() {
return MAC;
}

@Override
public String toString() {
return "macOS 13.0";
}
},

/**
* Many platforms have UNIX traits, amongst them LINUX, Solaris and BSD.
*/
Expand Down

0 comments on commit 46f300c

Please sign in to comment.