File tree 2 files changed +4
-1
lines changed
py/test/selenium/webdriver/common
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -383,6 +383,8 @@ def testShouldBeAbleToSwitchToTheTopIfTheFrameIsDeletedFromUnderUsWithWebelement
383
383
@pytest .mark .xfail_marionette (raises = WebDriverException ,
384
384
reason = 'https://github.com/mozilla/geckodriver/issues/614' )
385
385
def testShouldNotBeAbleToDoAnythingTheFrameIsDeletedFromUnderUs (driver , pages ):
386
+ if driver .name == 'firefox' and driver .w3c :
387
+ pytest .skip ('Stalls tests, https://bugzilla.mozilla.org/show_bug.cgi?id=1410799' )
386
388
pages .load ("frame_switching_tests/deletingFrame.html" )
387
389
driver .switch_to .frame (driver .find_element_by_id ("iframe1" ))
388
390
Original file line number Diff line number Diff line change 21
21
from selenium .common .exceptions import StaleElementReferenceException
22
22
23
23
24
- @pytest .mark .skip (reason = 'Stalls tests, https://bugzilla.mozilla.org/show_bug.cgi?id=1410799' )
25
24
def testOldPage (driver , pages ):
25
+ if driver .name == 'firefox' and driver .w3c :
26
+ pytest .skip ('Stalls tests, https://bugzilla.mozilla.org/show_bug.cgi?id=1410799' )
26
27
pages .load ("simpleTest.html" )
27
28
elem = driver .find_element (by = By .ID , value = "links" )
28
29
pages .load ("xhtmlTest.html" )
You can’t perform that action at this time.
0 commit comments