File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
sdk/python/packages/flet/integration_tests/examples/material Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -75,19 +75,25 @@ async def test_handling_clicks(flet_app_function: ftt.FletTestApp):
7575 flet_app_function .page .update ()
7676 ob = await flet_app_function .tester .find_by_text_containing ("event" )
7777 await flet_app_function .tester .tap (ob )
78- await flet_app_function .tester .pump_and_settle ()
78+ await flet_app_function .tester .pump_and_settle (
79+ duration = ft .Duration (milliseconds = 500 )
80+ )
7981 flet_app_function .assert_screenshot (
8082 "handling_clicks1" ,
8183 await flet_app_function .page .take_screenshot (),
8284 )
8385 await flet_app_function .tester .tap (ob )
84- await flet_app_function .tester .pump_and_settle ()
86+ await flet_app_function .tester .pump_and_settle (
87+ duration = ft .Duration (milliseconds = 500 )
88+ )
8589 flet_app_function .assert_screenshot (
8690 "handling_clicks2" ,
8791 await flet_app_function .page .take_screenshot (),
8892 )
8993 await flet_app_function .tester .tap (ob )
90- await flet_app_function .tester .pump_and_settle ()
94+ await flet_app_function .tester .pump_and_settle (
95+ duration = ft .Duration (milliseconds = 500 )
96+ )
9197 flet_app_function .assert_screenshot (
9298 "handling_clicks3" ,
9399 await flet_app_function .page .take_screenshot (),
You can’t perform that action at this time.
0 commit comments