fix max steps for date picker agent (#2944)

This commit is contained in:
LawyZheng
2025-07-15 10:21:18 +08:00
committed by GitHub
parent 758fb14663
commit 90b7f55d3c

View File

@@ -2529,7 +2529,7 @@ async def sequentially_select_from_dropdown(
if await single_select_result.is_done():
return single_select_result
if i == MAX_SELECT_DEPTH - 1:
if i == max_depth - 1:
LOG.warning(
"Reaching the max selection depth",
depth=i,