- misc edits.
This commit is contained in:
doms9 2026-04-22 21:26:41 -04:00
parent 22645d6b75
commit 00000d9e1a
4 changed files with 4 additions and 21 deletions

View file

@ -54,12 +54,9 @@ async def process_event(
return
try:
if btn := page.locator("button.streambutton").first:
await btn.click(
force=True,
click_count=2,
timeout=3_000,
)
btn = page.locator("button.streambutton").first
await btn.dblclick(force=True, timeout=3_000)
await page.wait_for_function(
"() => typeof clapprPlayer !== 'undefined'",