1414
1515import os
1616
17- import pytest
18-
1917from appium .webdriver .common .flutterby import FlutterBy
2018from appium .webdriver .flutter_finder import FlutterFinder
2119from test .functional .flutter .helper .test_helper import BaseTestCase
@@ -41,7 +39,6 @@ def test_wait_command(self):
4139 self .flutter_command .wait_for_visible (message_field )
4240 assert len (self .driver .find_elements (* message_field_finder .as_strings ())) == 1
4341
44- @pytest .mark .skip
4542 def test_scroll_till_visible_command (self ):
4643 self .__open_screen ('Vertical Swiping' )
4744
@@ -59,7 +56,6 @@ def test_scroll_till_visible_command(self):
5956 assert second_element .get_attribute ('displayed' ) == 'false'
6057 assert first_element .get_attribute ('displayed' ) == 'true'
6158
62- @pytest .mark .skip
6359 def test_scroll_till_visible_with_scroll_params_command (self ):
6460 self .__open_screen ('Vertical Swiping' )
6561
@@ -72,7 +68,6 @@ def test_scroll_till_visible_with_scroll_params_command(self):
7268 first_element = self .flutter_command .scroll_till_visible (FlutterFinder .by_flutter_text ("Playwright" ), ** scroll_params )
7369 assert first_element .get_attribute ('displayed' ) == 'true'
7470
75- @pytest .mark .skip
7671 def test_double_click_command (self ):
7772 self .__open_screen ('Double Tap' )
7873
@@ -88,7 +83,6 @@ def test_double_click_command(self):
8883
8984 self .driver .find_element (FlutterBy .FLUTTER_TEXT , 'Ok' ).click ()
9085
91- @pytest .mark .skip
9286 def test_long_press_command (self ):
9387 self .__open_screen ('Long Press' )
9488
@@ -99,7 +93,6 @@ def test_long_press_command(self):
9993 assert success_pop_up .text == 'It was a long press'
10094 assert success_pop_up .is_displayed () == True
10195
102- @pytest .mark .skip
10396 def test_drag_and_drop_command (self ):
10497 self .__open_screen ('Drag & Drop' )
10598
@@ -108,7 +101,6 @@ def test_drag_and_drop_command(self):
108101 self .flutter_command .perform_drag_and_drop (drag_element , drop_element )
109102 assert self .driver .find_element (FlutterBy .FLUTTER_TEXT ,'The box is dropped' ).is_displayed () == True
110103
111- @pytest .mark .skip
112104 def test_camera_mocking (self ):
113105 self .__open_screen ('Image Picker' )
114106
0 commit comments