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 941a95b commit af89e96Copy full SHA for af89e96
tests/integration/test_integration.py
@@ -433,6 +433,8 @@ def test_inin028_layout_as_list(dash_duo):
433
app = Dash()
434
435
app.layout = [
436
+ "string1",
437
+ "string2",
438
html.Div("one", id="one"),
439
html.Div("two", id="two"),
440
html.Button("direct", id="direct"),
@@ -458,6 +460,9 @@ def on_nested_click(n_clicks):
458
460
459
461
dash_duo.start_server(app)
462
463
+ dash_duo.wait_for_contains_text("#react-entry-point", "string1")
464
+ dash_duo.wait_for_contains_text("#react-entry-point", "string2")
465
+
466
dash_duo.wait_for_text_to_equal("#one", "one")
467
dash_duo.wait_for_text_to_equal("#two", "two")
468
0 commit comments