Skip to content

Commit

Permalink
Merge pull request #71 from abocz/use-selenium-2.53.1
Browse files Browse the repository at this point in the history
Use selenium 2.53.1
  • Loading branch information
alechenninger committed Jul 7, 2016
2 parents 71485a4 + 5527ea4 commit 56ca37c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ maven
<dependency>
<groupId>com.redhat.darcy</groupId>
<artifactId>darcy-webdriver</artifactId>
<version>0.3.2-SNAPSHOT</version>
<version>0.3.3-SNAPSHOT</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<properties>
<version.synq>0.1.2-SNAPSHOT</version.synq>
<version.darcy-web>0.3.0-SNAPSHOT</version.darcy-web>
<version.selenium>2.52.0</version.selenium>
<version.selenium>2.53.1</version.selenium>
<version.operadriver>1.5</version.operadriver>
<version.guice>4.0-beta5</version.guice>
<version.guiceberry>3.3.1</version.guiceberry>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
import org.openqa.selenium.internal.FindsByTagName;
import org.openqa.selenium.internal.FindsByXPath;
import org.openqa.selenium.internal.WrapsDriver;
import org.openqa.selenium.remote.SessionNotFoundException;

import java.util.List;
import java.util.Objects;
Expand Down Expand Up @@ -71,7 +70,7 @@ public boolean isPresent() {
try {
driver().getTitle();
return true;
} catch (NotFoundException | SessionNotFoundException e) {
} catch (NotFoundException e) {
return false;
}
}
Expand Down

0 comments on commit 56ca37c

Please sign in to comment.