From 312ddf0d84eed1d0bc296da441a9e37a8cc21c9f Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Thu, 15 May 2025 11:29:10 -0700 Subject: [PATCH] fix multi level selection issue (#2351) --- skyvern/webeye/actions/handler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skyvern/webeye/actions/handler.py b/skyvern/webeye/actions/handler.py index a96ac5b1..cd614052 100644 --- a/skyvern/webeye/actions/handler.py +++ b/skyvern/webeye/actions/handler.py @@ -2286,7 +2286,7 @@ async def sequentially_select_from_dropdown( dropdown_menu_element: SkyvernElement | None = None, force_select: bool = False, target_value: str = "", - continue_until_click: bool = False, + continue_until_close: bool = False, ) -> CustomSingleSelectResult | None: """ TODO: support to return all values retrieved from the sequentially select @@ -2412,7 +2412,7 @@ async def sequentially_select_from_dropdown( ) continue - if continue_until_click: + if continue_until_close: LOG.info( "Continue the selecting until the dropdown menu is closed", step_id=step.step_id,