Skip to content

Commit

Permalink
chore(java): enable tests in FF and bump java version to 11 in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
harsha509 committed Nov 15, 2024
1 parent 2023e73 commit 9f69706
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions examples/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

<properties>
<surefire.parallel>1</surefire.parallel>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<selenium.version>4.26.0</selenium.version>
</properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ public void setProfileLocation() {
}

@Test
@Disabled("Skipping tests until Firefox 127 is released")
public void installAddon() {
driver = startFirefoxDriver();
Path xpiPath = Paths.get("src/test/resources/extensions/selenium-example.xpi");
Expand All @@ -139,7 +138,6 @@ public void installAddon() {
}

@Test
@Disabled("Skipping tests until Firefox 127 is released")
public void uninstallAddon() {
driver = startFirefoxDriver();
Path xpiPath = Paths.get("src/test/resources/extensions/selenium-example.xpi");
Expand All @@ -152,7 +150,6 @@ public void uninstallAddon() {
}

@Test
@Disabled("Skipping tests until Firefox 127 is released")
public void installUnsignedAddonPath() {
driver = startFirefoxDriver();
Path path = Paths.get("src/test/resources/extensions/selenium-example");
Expand Down

0 comments on commit 9f69706

Please sign in to comment.