Skip to content

Commit

Permalink
Upgraded Selenium to 2.35.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Tolf Tolfsen committed Aug 13, 2013
1 parent 9cf3967 commit 7623b0c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
Binary file not shown.
6 changes: 4 additions & 2 deletions src/com/opera/core/systems/OperaDriver.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebDriverException;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.interactions.Keyboard;
import org.openqa.selenium.interactions.Mouse;
import org.openqa.selenium.internal.WrapsElement;
import org.openqa.selenium.logging.Logs;
import org.openqa.selenium.remote.DesiredCapabilities;
Expand Down Expand Up @@ -968,13 +970,13 @@ public Object executeAsyncScript(String script, Object... args) {

// RemoteWebDriver still uses old Keyboard interface:
// https://code.google.com/p/selenium/source/detail?r=b29e19aeee0737fc42dbb68196bb1f16aadbedf9
public org.openqa.selenium.Keyboard getKeyboard() {
public Keyboard getKeyboard() {
return keyboard;
}

// RemoteWebDriver still uses old Mouse interface:
// https://code.google.com/p/selenium/source/detail?r=b29e19aeee0737fc42dbb68196bb1f16aadbedf9
public org.openqa.selenium.Mouse getMouse() {
public Mouse getMouse() {
return mouse;
}

Expand Down
2 changes: 1 addition & 1 deletion src/com/opera/core/systems/OperaKeyboard.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
import com.opera.core.systems.scope.internal.OperaKey;
import com.opera.core.systems.scope.services.Exec;

import org.openqa.selenium.Keyboard;
import org.openqa.selenium.Keys;
import org.openqa.selenium.interactions.Keyboard;

import java.util.List;

Expand Down
2 changes: 1 addition & 1 deletion src/com/opera/core/systems/OperaMouse.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
import com.opera.core.systems.scope.internal.OperaMouseKeys;
import com.opera.core.systems.scope.services.Exec;

import org.openqa.selenium.Mouse;
import org.openqa.selenium.Point;
import org.openqa.selenium.interactions.InvalidCoordinatesException;
import org.openqa.selenium.interactions.Mouse;
import org.openqa.selenium.interactions.internal.Coordinates;

public class OperaMouse implements Mouse {
Expand Down

0 comments on commit 7623b0c

Please sign in to comment.