Task fix batch (#383)

* update 873cafdd-a581-47f6-8b33-b9696ddb7b05 task eval

* c1fa57f3-c3db-4596-8f09-020701085416 fix, add tolerance to url matching

* 8df7e444-8e06-4f93-8a1a-c5c974269d82 add more clear instruction to the filename for compress

* add address string normalization for 6f4073b8-d8ea-4ade-8a18-c5d1d5d5aa9a

---------

Co-authored-by: Jiaqi <dengjiaqi@moonshot.cn>
This commit is contained in:
MillanK
2025-11-19 17:24:25 +08:00
committed by GitHub
parent 903ed36715
commit cbc3b590ff
5 changed files with 44 additions and 33 deletions

View File

@@ -827,8 +827,8 @@ def get_active_tab_info(env, config: Dict[str, str]):
try:
logger.info(f"[ACTIVE_TAB_INFO] Navigating to URL: {active_tab_url}")
page.goto(active_tab_url, wait_until='networkidle', timeout=timeout_ms)
page.wait_for_load_state('networkidle', timeout=timeout_ms) # Wait for the 'load' event to complete
page.goto(active_tab_url, wait_until='load', timeout=timeout_ms)
page.wait_for_load_state('load', timeout=timeout_ms) # Wait for the 'load' event to complete
active_tab_info = {
'title': page.title(),