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 028ef73 commit 5f8e9baCopy full SHA for 5f8e9ba
1 file changed
tests/test_widgets.py
@@ -96,14 +96,14 @@ def SomeComponent():
96
input_1 = await display.page.wait_for_selector("#i_1")
97
input_2 = await display.page.wait_for_selector("#i_2")
98
99
- await input_1.type("1")
+ await input_1.type("1", delay=DEFAULT_TYPE_DELAY)
100
101
poll_value = poll(lambda: value.current)
102
103
await poll_value.until_equals(1)
104
105
await input_2.focus()
106
- await input_2.type("2")
+ await input_2.type("2", delay=DEFAULT_TYPE_DELAY)
107
108
await poll_value.until_equals(12)
109
0 commit comments