Merge pull request #3008 from seleniumbase/fix-uc-mode-clicking-on-windows

Fix UC Mode clicking on Windows
This commit is contained in:
Michael Mintz 2024-08-07 13:08:17 -04:00 committed by GitHub
commit 9981b5f690
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -1,2 +1,2 @@
# seleniumbase package
__version__ = "4.29.7"
__version__ = "4.29.8"

View File

@ -900,8 +900,8 @@ def _uc_gui_click_captcha(
y = i_y + element.rect["y"] + int(element.rect["height"] / 2)
y += 1
else:
x = i_x + 34
y = i_y + 34
x = (i_x + 34) * width_ratio
y = (i_y + 34) * width_ratio
driver.switch_to.default_content()
except Exception:
try: