Phoenix.LiveViewTest.find_live_child
You're seeing just the function
find_live_child
, go back to Phoenix.LiveViewTest module for more information.
Gets the nested LiveView child by child_id
from the parent
LiveView.
Examples
{:ok, view, _html} = live(conn, "/thermo")
assert clock_view = find_live_child(view, "clock")
assert render_click(clock_view, :snooze) =~ "snoozing"