77import org .openqa .selenium .WebElement ;
88import org .openqa .selenium .remote .QtWebkitAugmenter ;
99import org .openqa .selenium .remote .RemoteWebElement ;
10+ import org .openqa .selenium .testing .Ignore ;
1011import org .openqa .selenium .testing .JUnit4TestBase ;
1112
1213import static org .junit .Assert .assertEquals ;
1314import static org .junit .Assert .assertNotEquals ;
15+ import static org .openqa .selenium .testing .Ignore .Driver .QTWEBKIT ;
1416
1517public 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