Skip to content

Commit f927f8c

Browse files
committed
ignored HTML5AudioTagTest for player mute
1 parent ed816ef commit f927f8c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

java/client/test/org/openqa/selenium/qtwebkit/HTML5AudioTagTest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@
77
import org.openqa.selenium.WebElement;
88
import org.openqa.selenium.remote.QtWebkitAugmenter;
99
import org.openqa.selenium.remote.RemoteWebElement;
10+
import org.openqa.selenium.testing.Ignore;
1011
import org.openqa.selenium.testing.JUnit4TestBase;
1112

1213
import static org.junit.Assert.assertEquals;
1314
import static org.junit.Assert.assertNotEquals;
15+
import static org.openqa.selenium.testing.Ignore.Driver.QTWEBKIT;
1416

1517
public class HTML5AudioTagTest extends JUnit4TestBase {
1618
@Before
@@ -50,6 +52,7 @@ public void testRemotePlayerState() {
5052
}
5153

5254
@Test
55+
@Ignore(value = {QTWEBKIT}, reason = "Segmentation fault GStreamer; bug 997153, https://bugzilla.redhat.com/show_bug.cgi?id=918553")
5356
public void testRemotePlayerSetMute() {
5457
WebElement element = driver.findElement(By.id("audioPlayer"));
5558
Player player = getPlayer((RemoteWebElement) element);
@@ -61,6 +64,7 @@ public void testRemotePlayerSetMute() {
6164
}
6265

6366
@Test
67+
@Ignore(value = {QTWEBKIT}, reason = "Segmentation fault GStreamer; bug 997153, https://bugzilla.redhat.com/show_bug.cgi?id=918553")
6468
public void testRemotePlayerGetMute() {
6569
WebElement element = driver.findElement(By.id("audioPlayer"));
6670
Player player = getPlayer((RemoteWebElement) element);
@@ -97,6 +101,7 @@ public void testRemotePlayerVolume() {
97101
}
98102

99103
@Test
104+
@Ignore(value = {QTWEBKIT}, reason = "Segmentation fault GStreamer; bug 997153, https://bugzilla.redhat.com/show_bug.cgi?id=918553")
100105
public void testRemotePlayerVolumeAndMute() {
101106
WebElement element = driver.findElement(By.id("audioPlayer"));
102107
Player player = getPlayer((RemoteWebElement) element);

0 commit comments

Comments
 (0)