We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f8e9ba commit e8867acCopy full SHA for e8867ac
tests/test_widgets.py
@@ -125,7 +125,7 @@ def SomeComponent():
125
input_1 = await display.page.wait_for_selector("#i_1")
126
input_2 = await display.page.wait_for_selector("#i_2")
127
128
- await input_1.type("1")
+ await input_1.type("1", delay=DEFAULT_TYPE_DELAY)
129
130
poll_value = poll(lambda: value.current)
131
@@ -136,6 +136,6 @@ def SomeComponent():
136
137
await poll_value.until_equals("1")
138
139
- await input_2.type("2")
+ await input_2.type("2", delay=DEFAULT_TYPE_DELAY)
140
141
await poll_value.until_equals("2")
0 commit comments