Skip to content

Commit c82fef9

Browse files
committed
[java] Ignoring tests that fail in Firefox in GitHub Actions environment
1 parent b0363fd commit c82fef9

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

java/client/test/org/openqa/selenium/WindowTest.java

+6
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
import static org.openqa.selenium.Platform.ANDROID;
2323
import static org.openqa.selenium.testing.drivers.Browser.CHROME;
2424
import static org.openqa.selenium.testing.drivers.Browser.EDGE;
25+
import static org.openqa.selenium.testing.drivers.Browser.MARIONETTE;
2526
import static org.openqa.selenium.testing.drivers.Browser.SAFARI;
2627

2728
import org.junit.Test;
@@ -120,6 +121,7 @@ public void testSetsThePositionOfTheCurrentWindow() {
120121

121122
@Test
122123
@Ignore(value = CHROME, travis = true)
124+
@Ignore(value = MARIONETTE, gitHubActions = true)
123125
@Ignore(EDGE)
124126
public void testCanMaximizeTheWindow() {
125127
// Browser window cannot be resized or moved on ANDROID (and most mobile platforms
@@ -133,6 +135,7 @@ public void testCanMaximizeTheWindow() {
133135
@SwitchToTopAfterTest
134136
@Test
135137
@Ignore(value = CHROME, travis = true)
138+
@Ignore(value = MARIONETTE, gitHubActions = true)
136139
@Ignore(EDGE)
137140
public void testCanMaximizeTheWindowFromFrame() {
138141
// Browser window cannot be resized or moved on ANDROID (and most mobile platforms
@@ -149,6 +152,7 @@ public void testCanMaximizeTheWindowFromFrame() {
149152
@SwitchToTopAfterTest
150153
@Test
151154
@Ignore(value = CHROME, travis = true)
155+
@Ignore(value = MARIONETTE, gitHubActions = true)
152156
@Ignore(EDGE)
153157
public void testCanMaximizeTheWindowFromIframe() {
154158
// Browser window cannot be resized or moved on ANDROID (and most mobile platforms
@@ -176,6 +180,7 @@ public void canMinimizeTheWindow() {
176180

177181
@Test
178182
@Ignore(value = CHROME, travis = true)
183+
@Ignore(value = MARIONETTE, gitHubActions = true)
179184
@Ignore(SAFARI)
180185
@Ignore(EDGE)
181186
public void canFullscreenTheWindow() {
@@ -194,6 +199,7 @@ public void canFullscreenTheWindow() {
194199
@SwitchToTopAfterTest
195200
@Test
196201
@Ignore(value = CHROME, travis = true)
202+
@Ignore(value = MARIONETTE, gitHubActions = true)
197203
@Ignore(SAFARI)
198204
@Ignore(EDGE)
199205
public void canFullscreenTheWindowFromFrame() {

0 commit comments

Comments
 (0)