Skip to content

Commit

Permalink
[py] Disable aria tests for remote
Browse files Browse the repository at this point in the history
  • Loading branch information
AutomatedTester committed Mar 19, 2021
1 parent 9a4bbf4 commit 08e351d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions py/test/selenium/webdriver/common/element_aria_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ def test_should_return_explicitly_specified_role(driver):

@pytest.mark.xfail_firefox
@pytest.mark.xfail_safari
@pytest.mark.xfail_remote
def test_shouldReturnImplicitRoleDefinedByTagName(driver):
driver.get("data:text/html,<h1>Level 1 Header</h1>")
header1 = driver.find_element(By.CSS_SELECTOR, "h1")
Expand All @@ -38,6 +39,7 @@ def test_shouldReturnImplicitRoleDefinedByTagName(driver):

@pytest.mark.xfail_firefox
@pytest.mark.xfail_safari
@pytest.mark.xfail_remote
def test_should_return_explicit_role_even_if_it_contradicts_tag_name(driver):
driver.get("data:text/html,<h1 role='alert'>Level 1 Header</h1>")
header1 = driver.find_element(By.CSS_SELECTOR, "h1")
Expand Down

0 comments on commit 08e351d

Please sign in to comment.