Skip to content

Commit 4e2eadb

Browse files
Disable marionette tests on Position and Size tests
1 parent 502cef2 commit 4e2eadb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

py/test/selenium/webdriver/common/position_and_size_tests.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,14 @@ def testShouldGetCoordinatesOfAnElementInAFrame(self):
5454
self.assertEqual(box.location, {"x": 10, "y": 10})
5555
self.assertEqual(self._get_location_on_page(By.ID,"box"), {"x": 10, "y": 10})
5656

57+
@pytest.mark.ignore_marionette
5758
def testShouldGetCoordinatesInViewPortOfAnElementInAFrame(self):
5859
self.driver.get(self.webserver.where_is("coordinates_tests/element_in_frame.html"))
5960
self.driver.switch_to_frame(self.driver.find_element(By.NAME, "ifr"))
6061
self.assertEqual(self._get_location_in_viewport(By.ID,"box"), {"x": 25, "y": 25})
6162
self.assertEqual(self._get_location_on_page(By.ID,"box"), {"x": 10, "y": 10})
6263

64+
@pytest.mark.ignore_marionette
6365
def testShouldGetCoordinatesInViewPortOfAnElementInANestedFrame(self):
6466
self.driver.get(self.webserver.where_is("coordinates_tests/element_in_nested_frame.html"))
6567
self.driver.switch_to_frame(self.driver.find_element(By.NAME, "ifr"))

0 commit comments

Comments
 (0)