optimize multiple select (#1703)

This commit is contained in:
Shuchang Zheng
2025-02-03 19:19:39 +08:00
committed by GitHub
parent 36de8bde99
commit b4f2ec945c
4 changed files with 46 additions and 17 deletions

View File

@@ -451,7 +451,7 @@ class FailedToFetchSecret(SkyvernException):
class NoIncrementalElementFoundForCustomSelection(SkyvernException):
def __init__(self, element_id: str) -> None:
super().__init__(
f"No incremental element found, maybe try an input action or taking the select action on other elements. element_id={element_id}"
f"No incremental element found, try it again later or try another element. element_id={element_id}"
)