Skip to content

Commit

Permalink
adding Windows 8.1 platform, so we can use it in saucelabs for IE11 t…
Browse files Browse the repository at this point in the history
…esting
  • Loading branch information
lukeis committed Apr 30, 2014
1 parent 7268c78 commit 7720dd8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions java/client/src/org/openqa/selenium/Platform.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,13 @@ public boolean is(Platform compareWith) {
}
},

WIN8_1("Windows 8.1", "win8.1") {
@Override
public boolean is(Platform compareWith) {
return compareWith == WINDOWS || compareWith == WIN8_1;
}
},

MAC("mac", "darwin") {},

/**
Expand Down

0 comments on commit 7720dd8

Please sign in to comment.