Skip to content

Commit

Permalink
Merge pull request #3008 from seleniumbase/fix-uc-mode-clicking-on-wi…
Browse files Browse the repository at this point in the history
…ndows

Fix UC Mode clicking on Windows
  • Loading branch information
mdmintz authored Aug 7, 2024
2 parents 283c3db + 2c21ac9 commit 9981b5f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion seleniumbase/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# seleniumbase package
__version__ = "4.29.7"
__version__ = "4.29.8"
4 changes: 2 additions & 2 deletions seleniumbase/core/browser_launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 9981b5f

Please sign in to comment.