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 83ade41 commit 9325c9dCopy full SHA for 9325c9d
1 file changed
seleniumbase/core/browser_launcher.py
@@ -1504,7 +1504,10 @@ def _uc_gui_click_captcha(
1504
y += 0.5
1505
else:
1506
x = (i_x + 32) * width_ratio
1507
- y = (i_y + 32) * width_ratio
+ if not IS_WINDOWS:
1508
+ y = (i_y + 32) * width_ratio
1509
+ else:
1510
+ y = (i_y + 22) * width_ratio
1511
if driver.is_connected():
1512
driver.switch_to.default_content()
1513
except Exception:
0 commit comments