Skip to content

Commit

Permalink
Remove Edge from supported web drivers (keycloak#30423)
Browse files Browse the repository at this point in the history
Closes keycloak#29921

Signed-off-by: wojnarfilip <[email protected]>
Co-authored-by: wojnarfilip <[email protected]>
  • Loading branch information
wojnarfilip and wojnarfilip authored Jun 24, 2024
1 parent e30e6cb commit 015fefa
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
5 changes: 0 additions & 5 deletions testsuite/integration-arquillian/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,6 @@
<artifactId>selenium-firefox-driver</artifactId>
<version>${selenium.version}</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-edge-driver</artifactId>
<version>${selenium.version}</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-remote-driver</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.edge.EdgeDriver;
import org.openqa.selenium.firefox.FirefoxDriver;

/**
Expand All @@ -40,8 +39,4 @@ public static boolean isDriverChrome(WebDriver driver) {
public static boolean isDriverFirefox(WebDriver driver) {
return isDriverInstanceOf(driver, FirefoxDriver.class);
}

public static boolean isDriverEdge(WebDriver driver) {
return isDriverInstanceOf(driver, EdgeDriver.class);
}
}

0 comments on commit 015fefa

Please sign in to comment.