Skip to content

Commit

Permalink
[py] Mark testClickingOnFormElements as xfail for PhantomJS
Browse files Browse the repository at this point in the history
  • Loading branch information
davehunt committed Oct 25, 2016
1 parent 86777d8 commit 7046f42
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions py/test/selenium/webdriver/common/interactions_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,8 @@ def testClickingOnFormElements(self, driver, pages):
"""Copied from org.openqa.selenium.interactions.CombinedInputActionsTest."""
if driver.capabilities['browserName'] == 'firefox':
pytest.skip("Actions not available in Marionette. https://bugzilla.mozilla.org/show_bug.cgi?id=1292178")
if driver.capabilities['browserName'] == 'phantomjs':
pytest.xfail("phantomjs driver does not seem to select all the elements")
pages.load("formSelectionPage.html")
options = driver.find_elements_by_tag_name("option")
selectThreeOptions = ActionChains(driver) \
Expand Down

0 comments on commit 7046f42

Please sign in to comment.