Skip to content

Commit 7046f42

Browse files
committed
[py] Mark testClickingOnFormElements as xfail for PhantomJS
1 parent 86777d8 commit 7046f42

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

py/test/selenium/webdriver/common/interactions_tests.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,8 @@ def testClickingOnFormElements(self, driver, pages):
156156
"""Copied from org.openqa.selenium.interactions.CombinedInputActionsTest."""
157157
if driver.capabilities['browserName'] == 'firefox':
158158
pytest.skip("Actions not available in Marionette. https://bugzilla.mozilla.org/show_bug.cgi?id=1292178")
159+
if driver.capabilities['browserName'] == 'phantomjs':
160+
pytest.xfail("phantomjs driver does not seem to select all the elements")
159161
pages.load("formSelectionPage.html")
160162
options = driver.find_elements_by_tag_name("option")
161163
selectThreeOptions = ActionChains(driver) \

0 commit comments

Comments
 (0)