Skip to content

Commit

Permalink
Merge pull request #395 from patrickdargel/master
Browse files Browse the repository at this point in the history
repair issue 391 but from code side
  • Loading branch information
smccarthy authored and smccarthy-godaddy committed Apr 11, 2018
1 parent e698e83 commit 9c06528
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ private WebDriverRelease findLatestRelease(List<WebDriverRelease> list) {
WebDriverRelease highestVersion = null;

for (WebDriverRelease r : list) {

if ("IEDriverServer".equals(r.getName()) && r.getMajorVersion() == 9){
continue;
}
if (highestVersion == null) {
highestVersion = r;
} else if (r.getMajorVersion() > highestVersion.getMajorVersion()) {
Expand Down

0 comments on commit 9c06528

Please # to comment.