Skip to content

Commit 11166ee

Browse files
committed
fix test number input
1 parent 58ad02f commit 11166ee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

components/dash-core-components/tests/integration/input/test_number_input.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ def test_inni010_valid_numbers(dash_dcc, ninput_app):
245245
(str(sys.float_info.max), float),
246246
(str(sys.float_info.min), float),
247247
):
248-
elem = dash_dcc.find_element("#input_false")
248+
elem = dash_dcc.wait_for_element("#input_false")
249249
elem.send_keys(num)
250250
assert dash_dcc.wait_for_text_to_equal(
251251
"#div_false", str(op(num))

0 commit comments

Comments
 (0)