We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1218ba9 commit ce3d514Copy full SHA for ce3d514
seleniumbase/undetected/webelement.py
@@ -14,7 +14,7 @@ def uc_click(
14
):
15
if driver and selector and by:
16
delayed_click = False
17
- if tag_name == "span" or tag_name == "button" or tag_name == "div":
+ if tag_name in ["span", "button", "div", "a"]:
18
delayed_click = True
19
if delayed_click and ":contains" not in selector:
20
selector = js_utils.convert_to_css_selector(selector, by)
0 commit comments