File tree Expand file tree Collapse file tree 5 files changed +10
-7
lines changed Expand file tree Collapse file tree 5 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ pathspec==0.12.1
1414Babel == 2.17.0
1515paginate == 0.5.7
1616mkdocs == 1.6.1
17- mkdocs-material == 9.6.16
17+ mkdocs-material == 9.6.17
1818mkdocs-exclude-search == 0.6.6
1919mkdocs-simple-hooks == 0.1.5
2020mkdocs-material-extensions == 1.3.1
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ exceptiongroup>=1.3.0
1010websockets ~= 13.1 ;python_version < "3.9"
1111websockets >= 15.0.1 ;python_version >= "3.9"
1212filelock ~= 3.16.1 ;python_version < "3.9"
13- filelock >= 3.18.0 ;python_version >= "3.9"
13+ filelock >= 3.19.1 ;python_version >= "3.9"
1414fasteners >= 0.20
1515mycdp >= 1.2.0
1616pynose >= 1.5.4
@@ -78,7 +78,7 @@ rich>=14.1.0,<15
7878# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)
7979
8080coverage >= 7.6.1 ;python_version < "3.9"
81- coverage >= 7.10.3 ;python_version >= "3.9"
81+ coverage >= 7.10.4 ;python_version >= "3.9"
8282pytest-cov >= 5.0.0 ;python_version < "3.9"
8383pytest-cov >= 6.2.1 ;python_version >= "3.9"
8484flake8 == 5.0.4 ;python_version < "3.9"
Original file line number Diff line number Diff line change 11# seleniumbase package
2- __version__ = "4.41.0 "
2+ __version__ = "4.41.1 "
Original file line number Diff line number Diff line change @@ -1504,7 +1504,10 @@ def _uc_gui_click_captcha(
15041504 y += 0.5
15051505 else :
15061506 x = (i_x + 32 ) * width_ratio
1507- y = (i_y + 32 ) * width_ratio
1507+ if not IS_WINDOWS :
1508+ y = (i_y + 32 ) * width_ratio
1509+ else :
1510+ y = (i_y + 22 ) * width_ratio
15081511 if driver .is_connected ():
15091512 driver .switch_to .default_content ()
15101513 except Exception :
Original file line number Diff line number Diff line change 158158 'websockets~=13.1;python_version<"3.9"' ,
159159 'websockets>=15.0.1;python_version>="3.9"' ,
160160 'filelock~=3.16.1;python_version<"3.9"' ,
161- 'filelock>=3.18.0 ;python_version>="3.9"' ,
161+ 'filelock>=3.19.1 ;python_version>="3.9"' ,
162162 'fasteners>=0.20' ,
163163 "mycdp>=1.2.0" ,
164164 "pynose>=1.5.4" ,
235235 # Usage: coverage run -m pytest; coverage html; coverage report
236236 "coverage" : [
237237 'coverage>=7.6.1;python_version<"3.9"' ,
238- 'coverage>=7.10.3 ;python_version>="3.9"' ,
238+ 'coverage>=7.10.4 ;python_version>="3.9"' ,
239239 'pytest-cov>=5.0.0;python_version<"3.9"' ,
240240 'pytest-cov>=6.2.1;python_version>="3.9"' ,
241241 ],
You can’t perform that action at this time.
0 commit comments