fix(gui2): Correct Response panel rendering and fix automation crashes

This commit is contained in:
2026-02-24 21:56:26 -05:00
parent fb9ee27b38
commit 14984c5233
12 changed files with 103 additions and 64 deletions

View File

@@ -15,6 +15,7 @@ def test_full_live_workflow(live_gui):
"""
client = ApiHookClient()
assert client.wait_for_server(timeout=10)
client.post_session(session_entries=[])
time.sleep(2)
# 1. Reset
@@ -78,10 +79,10 @@ def test_full_live_workflow(live_gui):
# 5. Switch Discussion
client.set_value("disc_new_name_input", "AutoDisc")
client.click("btn_disc_create")
time.sleep(0.5)
time.sleep(1.0) # Wait for GUI to process creation
client.select_list_item("disc_listbox", "AutoDisc")
time.sleep(0.5)
time.sleep(1.0) # Wait for GUI to switch
# Verify session is empty in new discussion
session = client.get_session()