select bugfix (#2439)

This commit is contained in:
Shuchang Zheng
2025-05-23 01:30:35 -07:00
committed by GitHub
parent cca2772765
commit f985bcd95b

View File

@@ -3140,7 +3140,7 @@ async def normal_select(
) -> List[ActionResult]: ) -> List[ActionResult]:
try: try:
current_text = await skyvern_element.get_attr("selected") current_text = await skyvern_element.get_attr("selected")
if current_text == action.option.label or current_text == action.option.value: if current_text and (current_text == action.option.label or current_text == action.option.value):
return [ActionSuccess()] return [ActionSuccess()]
except Exception: except Exception:
LOG.info("failed to confirm if the select option has been done, force to take the action again.") LOG.info("failed to confirm if the select option has been done, force to take the action again.")