We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db5f926 commit 9a6ba01Copy full SHA for 9a6ba01
examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java
@@ -14,6 +14,8 @@
14
import org.junit.jupiter.api.AfterEach;
15
import org.junit.jupiter.api.Assertions;
16
import org.junit.jupiter.api.Test;
17
+import org.junit.jupiter.api.condition.DisabledOnOs;
18
+import org.junit.jupiter.api.condition.OS;
19
import org.openqa.selenium.By;
20
import org.openqa.selenium.WebElement;
21
import org.openqa.selenium.bidi.webextension.ExtensionPath;
@@ -59,6 +61,7 @@ public void setBrowserLocation() {
59
61
}
60
62
63
@Test
64
+ @DisabledOnOs(OS.WINDOWS)
65
public void extensionOptions() {
66
ChromeOptions options = getDefaultChromeOptions();
67
options.enableBiDi();
0 commit comments