Remove Opera from supported web drivers (#29903)

Signed-off-by: Jon Koops <jonkoops@gmail.com>
This commit is contained in:
Jon Koops 2024-05-28 11:01:40 +02:00 committed by GitHub
parent 3abb09bf59
commit 66ef3bf2d7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 10 deletions

View file

@ -154,11 +154,6 @@
<artifactId>selenium-remote-driver</artifactId>
<version>${selenium.version}</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-opera-driver</artifactId>
<version>${selenium.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.arquillian</groupId>

View file

@ -21,7 +21,6 @@ import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.edge.EdgeDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.opera.OperaDriver;
import org.openqa.selenium.safari.SafariDriver;
/**
@ -43,10 +42,6 @@ public class BrowserDriverUtil {
return isDriverInstanceOf(driver, FirefoxDriver.class);
}
public static boolean isDriverOpera(WebDriver driver) {
return isDriverInstanceOf(driver, OperaDriver.class);
}
public static boolean isDriverEdge(WebDriver driver) {
return isDriverInstanceOf(driver, EdgeDriver.class);
}