@@ -53,7 +53,7 @@ def test_triple_click_relative(web: WebBot):
5353 if not web .find ("mouse" , matching = 0.97 , waiting_time = 10_000 ):
5454 raise Exception ('Image not found: mouse' )
5555 web .triple_click_relative (16 , 140 )
56-
56+ web . wait ( 5000 )
5757 result = conftest .get_event_result ('element-result' , web , test = "test_triple_click_relative" )
5858 assert result ['data' ] == ['Left2' , 'Left2' , 'Left2' ]
5959
@@ -91,7 +91,7 @@ def test_left_click_relative(web: WebBot):
9191 if not web .find ("mouse" , matching = 0.97 , waiting_time = 10_000 ):
9292 raise Exception ('Image not found: mouse' )
9393 web .click_relative (16 , 140 )
94-
94+ web . wait ( 5000 )
9595 result = conftest .get_event_result ('element-result' , web , test = "test_left_click_relative" )
9696 assert result ['data' ] == ['Left2' ]
9797
@@ -105,7 +105,7 @@ def test_left_double_click_relative(web: WebBot):
105105 if not web .find ("mouse" , matching = 0.97 , waiting_time = 10_000 ):
106106 raise Exception ('Image not found: mouse' )
107107 web .double_click_relative (16 , 140 )
108-
108+ web . wait ( 5000 )
109109 result = conftest .get_event_result ('element-result' , web , test = "test_left_double_click_relative" )
110110 assert result ['data' ] == ['Left2' , 'Left2' ]
111111
@@ -119,7 +119,7 @@ def test_right_click_relative(web: WebBot):
119119 if not web .find ("mouse" , matching = 0.97 , waiting_time = 10_000 ):
120120 raise Exception ('Image not found: mouse' )
121121 web .right_click_relative (16 , 140 )
122-
122+ web . wait ( 5000 )
123123 result = conftest .get_event_result ('element-result' , web , test = "test_right_click_relative" )
124124 assert result ['data' ] == ['Right2' ]
125125
0 commit comments