Skip to content

Commit

Permalink
[py] Unignoring some xpassed tests in Chrome
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Sep 19, 2019
1 parent bce1ed8 commit 6140d71
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 18 deletions.
4 changes: 0 additions & 4 deletions py/test/selenium/webdriver/common/alerts_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,10 +290,6 @@ def testAlertShouldNotAllowAdditionalCommandsIfDismissed(driver, pages):
alert.text


@pytest.mark.xfail_chrome(
reason='https://bugs.chromium.org/p/chromedriver/issues/detail?id=1537')
@pytest.mark.xfail_chromiumedge(
reason='https://bugs.chromium.org/p/chromedriver/issues/detail?id=1537')
@pytest.mark.xfail_marionette(
reason='https://bugzilla.mozilla.org/show_bug.cgi?id=1279211')
@pytest.mark.xfail_remote(
Expand Down
4 changes: 0 additions & 4 deletions py/test/selenium/webdriver/common/api_example_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,16 +285,12 @@ def testChangeWindowSize(driver, pages):
assert size['height'] == newSize[1]


@pytest.mark.xfail_chrome(raises=WebDriverException)
@pytest.mark.xfail_chromiumedge(raises=WebDriverException)
@pytest.mark.xfail_marionette(raises=WebDriverException)
def testGetLogTypes(driver, pages):
pages.load("blank.html")
assert isinstance(driver.log_types, list)


@pytest.mark.xfail_chrome(raises=WebDriverException)
@pytest.mark.xfail_chromiumedge(raises=WebDriverException)
@pytest.mark.xfail_marionette(raises=WebDriverException)
def testGetLog(driver, pages):
pages.load("blank.html")
Expand Down
2 changes: 0 additions & 2 deletions py/test/selenium/webdriver/common/page_load_timeout_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ def testShouldTimeoutOnPageLoadTakingTooLong(driver, pages):
pages.load("simpleTest.html")


@pytest.mark.xfail_chrome
@pytest.mark.xfail_chromiumedge
def testClickShouldTimeout(driver, pages):
pages.load("simpleTest.html")
driver.set_page_load_timeout(0.01)
Expand Down
6 changes: 0 additions & 6 deletions py/test/selenium/webdriver/common/select_class_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ def testSelectByIndexSingle(driver, pages):
assert sel.first_selected_option.text == select['values'][x]


@pytest.mark.xfail_chrome
@pytest.mark.xfail_chromiumedge
@pytest.mark.xfail_firefox
@pytest.mark.xfail_remote
@pytest.mark.xfail_marionette(reason='https://bugzilla.mozilla.org/show_bug.cgi?id=1429403')
Expand All @@ -69,8 +67,6 @@ def testSelectByValueSingle(driver, pages):
assert sel.first_selected_option.text == select['values'][x]


@pytest.mark.xfail_chrome
@pytest.mark.xfail_chromiumedge
@pytest.mark.xfail_firefox
@pytest.mark.xfail_remote
@pytest.mark.xfail_marionette(reason='https://bugzilla.mozilla.org/show_bug.cgi?id=1429403')
Expand Down Expand Up @@ -112,8 +108,6 @@ def testSelectByVisibleTextShouldNormalizeSpaces(driver, pages):
assert sel.first_selected_option.text == select['values'][x]


@pytest.mark.xfail_chrome
@pytest.mark.xfail_chromiumedge
@pytest.mark.xfail_firefox
@pytest.mark.xfail_remote
@pytest.mark.xfail_marionette(reason='https://bugzilla.mozilla.org/show_bug.cgi?id=1429403')
Expand Down
2 changes: 0 additions & 2 deletions py/test/selenium/webdriver/common/window_switching_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,6 @@ def testThatAccessingFindingAnElementAfterWindowIsClosedAndHaventswitchedDoesntC


@pytest.mark.xfail_ie
@pytest.mark.xfail_chrome
@pytest.mark.xfail_chromiumedge
def testShouldBeAbleToCreateANewWindow(driver, pages):
original_handle = driver.current_window_handle

Expand Down

0 comments on commit 6140d71

Please sign in to comment.