Skip to content

Commit e8867ac

Browse files
committed
a few more delays
1 parent 5f8e9ba commit e8867ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_widgets.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def SomeComponent():
125125
input_1 = await display.page.wait_for_selector("#i_1")
126126
input_2 = await display.page.wait_for_selector("#i_2")
127127

128-
await input_1.type("1")
128+
await input_1.type("1", delay=DEFAULT_TYPE_DELAY)
129129

130130
poll_value = poll(lambda: value.current)
131131

@@ -136,6 +136,6 @@ def SomeComponent():
136136

137137
await poll_value.until_equals("1")
138138

139-
await input_2.type("2")
139+
await input_2.type("2", delay=DEFAULT_TYPE_DELAY)
140140

141141
await poll_value.until_equals("2")

0 commit comments

Comments
 (0)