8000 config(maven/gradle): update selenium-java version + refactor depreca… · seleniumQuery/seleniumQuery@56abd67 · GitHub
[go: up one dir, main page]

Skip to content

Commit 56abd67

Browse files
committed
config(maven/gradle): update selenium-java version + refactor deprecated packages
1 parent 90a524f commit 56abd67

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ version = '0.19.0'
3030
description = "seleniumQuery"
3131

3232
ext {
33-
seleniumVersion = "3.14.0"
33+
seleniumVersion = '3.141.59'
3434
htmlUnitDriverVersion = '2.33.3'
3535
webDriverManagerVersion = '2.2.5'
3636
}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<maven.compiler.source>1.8</maven.compiler.source>
3232
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3333

34-
<selenium-java.version>3.14.0</selenium-java.version>
34+
<selenium-java.version>3.141.59</selenium-java.version>
3535
<htmlunit-driver.version>2.33.3</htmlunit-driver.version>
3636
<webdrivermanager.version>2.2.5</webdrivermanager.version>
3737
</properties>

src/test/java/io/github/seleniumquery/functions/jquery/events/DoubleClickFunctionTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
import org.openqa.selenium.WebElement;
2828
import org.openqa.selenium.interactions.Keyboard;
2929
import org.openqa.selenium.interactions.Mouse;
30-
import org.openqa.selenium.interactions.internal.Coordinates;
30+
import org.openqa.selenium.interactions.Coordinates;
3131
import testinfrastructure.testdouble.org.apache.commons.logging.LogInjector;
3232
import testinfrastructure.testdouble.org.apache.commons.logging.LogSpy;
3333
import testinfrastructure.testdouble.org.openqa.selenium.WebDriverDummy;
@@ -149,4 +149,4 @@ static class ThrowElementHiddenExceptionCoordinates extends CoordinatesSpy {
149149
throw new ElementNotVisibleException("simulating a hidden element");
150150
}
151151
}
152-
}
152+
}

src/test/java/testinfrastructure/testdouble/org/openqa/selenium/WebElementDummy.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
package testinfrastructure.testdouble.org.openqa.selenium;
1818

1919
import org.openqa.selenium.*;
20-
import org.openqa.selenium.interactions.internal.Coordinates;
21-
import org.openqa.selenium.internal.Locatable;
20+
import org.openqa.selenium.interactions.Coordinates;
21+
import org.openqa.selenium.interactions.Locatable;
2222
import testinfrastructure.testdouble.PseudoTestDoubleException;
2323

2424
import java.util.List;

src/test/java/testinfrastructure/testdouble/org/openqa/selenium/interactions/MouseDummy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package testinfrastructure.testdouble.org.openqa.selenium.interactions;
1818

1919
import org.openqa.selenium.interactions.Mouse;
20-
import org.openqa.selenium.interactions.internal.Coordinates;
20+
import org.openqa.selenium.interactions.Coordinates;
2121
import testinfrastructure.testdouble.PseudoTestDoubleException;
2222

2323
public class MouseDummy implements Mouse {

src/test/java/testinfrastructure/testdouble/org/openqa/selenium/interactions/internal/CoordinatesDummy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package testinfrastructure.testdouble.org.openqa.selenium.interactions.internal;
1818

1919
import org.openqa.selenium.Point;
20-
import org.openqa.selenium.interactions.internal.Coordinates;
20+
import org.openqa.selenium.interactions.Coordinates;
2121
import testinfrastructure.< 4355 span class=pl-s1>testdouble.PseudoTestDoubleException;
2222

2323
public class CoordinatesDummy implements Coordinates {

0 commit comments

Comments
 (0)
0