skip unnecessary select-dropdown check for input (#862)

This commit is contained in:
LawyZheng
2024-09-20 09:17:14 +08:00
committed by GitHub
parent c6775ad81f
commit 1b2bdcb949
2 changed files with 20 additions and 1 deletions

View File

@@ -416,7 +416,7 @@ async def handle_input_text_action(
incremental_element: list[dict] = []
# check if it's selectable
if skyvern_element.get_tag_name() == InteractiveElement.INPUT and not await skyvern_element.is_spinbtn_input():
if skyvern_element.get_tag_name() == InteractiveElement.INPUT and not await skyvern_element.is_raw_input():
await skyvern_element.scroll_into_view()
select_action = SelectOptionAction(
reasoning=action.reasoning,