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 d689206 commit 653bea8Copy full SHA for 653bea8
tests/integration/renderer/test_component_as_prop.py
@@ -358,9 +358,13 @@ def demo(n_clicks):
358
359
dash_duo.wait_for_element("#add-option").click()
360
for i in range(1, n + 2):
361
- dash_duo.wait_for_text_to_equal(f"#options label:nth-child({i}) span", "")
+ dash_duo.wait_for_text_to_equal(
362
+ f"#options label:nth-child({i}) .dash-options-list-option-text span", ""
363
+ )
364
dash_duo.wait_for_element(f"#options label:nth-child({i}) button").click()
- dash_duo.wait_for_text_to_equal(f"#options label:nth-child({i}) span", "1")
365
366
+ f"#options label:nth-child({i}) .dash-options-list-option-text span", "1"
367
368
369
370
@flaky(max_runs=3)
0 commit comments