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 73116a7 commit a42f95eCopy full SHA for a42f95e
tests/async_tests/test_async_callbacks.py
@@ -102,9 +102,8 @@ async def update_input(value):
102
103
assert call_count.value == 1, "called once at initial stage"
104
105
- pad_input, pad_div = dash_duo.dash_innerhtml_dom.select_one(
106
- "#output > div"
107
- ).contents
+ pad_input = dash_duo.dash_innerhtml_dom.select_one("#output input")
+ pad_div = dash_duo.dash_innerhtml_dom.select_one("#output #sub-output-1")
108
109
assert (
110
pad_input.attrs["value"] == "sub input initial value"
0 commit comments