fix chain click bug (#1019)

This commit is contained in:
LawyZheng
2024-10-22 02:21:05 +08:00
committed by GitHub
parent b0d9f9ce5f
commit 67bee9a487
2 changed files with 28 additions and 4 deletions

View File

@@ -355,8 +355,8 @@ class InputActionOnSelect2Dropdown(SkyvernException):
class FailToClick(SkyvernException):
def __init__(self, element_id: str):
super().__init__(f"Failed to click. element_id={element_id}")
def __init__(self, element_id: str, anchor: str = "self"):
super().__init__(f"Failed to click({anchor}). element_id={element_id}")
class FailToSelectByLabel(SkyvernException):