@@ -253,6 +253,7 @@ def test_can_pause(driver, pages):
253253
254254@pytest .mark .xfail_firefox  
255255@pytest .mark .xfail_remote  
256+ @pytest .mark .xfail_safari  
256257def  test_can_scroll_to_element (driver , pages ):
257258    pages .load ("scrolling_tests/frame_with_nested_scrolling_frame_out_of_view.html" )
258259    iframe  =  driver .find_element (By .TAG_NAME , "iframe" )
@@ -266,6 +267,7 @@ def test_can_scroll_to_element(driver, pages):
266267
267268@pytest .mark .xfail_firefox  
268269@pytest .mark .xfail_remote  
270+ @pytest .mark .xfail_safari  
269271def  test_can_scroll_from_element_by_amount (driver , pages ):
270272    pages .load ("scrolling_tests/frame_with_nested_scrolling_frame_out_of_view.html" )
271273    iframe  =  driver .find_element (By .TAG_NAME , "iframe" )
@@ -280,6 +282,7 @@ def test_can_scroll_from_element_by_amount(driver, pages):
280282
281283@pytest .mark .xfail_firefox  
282284@pytest .mark .xfail_remote  
285+ @pytest .mark .xfail_safari  
283286def  test_can_scroll_from_element_with_offset_by_amount (driver , pages ):
284287    pages .load ("scrolling_tests/frame_with_nested_scrolling_frame_out_of_view.html" )
285288    footer  =  driver .find_element (By .TAG_NAME , "footer" )
@@ -314,6 +317,7 @@ def test_can_scroll_from_viewport_by_amount(driver, pages):
314317    assert  _in_viewport (driver , footer )
315318
316319
320+ @pytest .mark .xfail_safari  
317321def  test_can_scroll_from_viewport_with_offset_by_amount (driver , pages ):
318322    pages .load ("scrolling_tests/frame_with_nested_scrolling_frame.html" )
319323    scroll_origin  =  ScrollOrigin .from_viewport (10 , 10 )
0 commit comments