Skip to content

Commit

Permalink
Adding Yosemite platform
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Nov 11, 2014
1 parent 5fe712f commit d0ce1f0
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions java/client/src/org/openqa/selenium/Platform.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,17 @@ public String toString() {
}
},

YOSEMITE("yosemite", "os x 10.10") {
@Override
public Platform family() {
return MAC;
}
@Override
public String toString() {
return "OS X 10.10";
}
},

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

0 comments on commit d0ce1f0

Please sign in to comment.