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
14
14
Babel == 2.17.0
15
15
paginate == 0.5.7
16
16
mkdocs == 1.6.1
17
- mkdocs-material == 9.6.16
17
+ mkdocs-material == 9.6.17
18
18
mkdocs-exclude-search == 0.6.6
19
19
mkdocs-simple-hooks == 0.1.5
20
20
mkdocs-material-extensions == 1.3.1
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ exceptiongroup>=1.3.0
10
10
websockets ~= 13.1 ;python_version < "3.9"
11
11
websockets >= 15.0.1 ;python_version >= "3.9"
12
12
filelock ~= 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"
14
14
fasteners >= 0.20
15
15
mycdp >= 1.2.0
16
16
pynose >= 1.5.4
@@ -78,7 +78,7 @@ rich>=14.1.0,<15
78
78
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)
79
79
80
80
coverage >= 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"
82
82
pytest-cov >= 5.0.0 ;python_version < "3.9"
83
83
pytest-cov >= 6.2.1 ;python_version >= "3.9"
84
84
flake8 == 5.0.4 ;python_version < "3.9"
Original file line number Diff line number Diff line change 1
1
# 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(
1504
1504
y += 0.5
1505
1505
else :
1506
1506
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
1508
1511
if driver .is_connected ():
1509
1512
driver .switch_to .default_content ()
1510
1513
except Exception :
Original file line number Diff line number Diff line change 158
158
'websockets~=13.1;python_version<"3.9"' ,
159
159
'websockets>=15.0.1;python_version>="3.9"' ,
160
160
'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"' ,
162
162
'fasteners>=0.20' ,
163
163
"mycdp>=1.2.0" ,
164
164
"pynose>=1.5.4" ,
235
235
# Usage: coverage run -m pytest; coverage html; coverage report
236
236
"coverage" : [
237
237
'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"' ,
239
239
'pytest-cov>=5.0.0;python_version<"3.9"' ,
240
240
'pytest-cov>=6.2.1;python_version>="3.9"' ,
241
241
],
You can’t perform that action at this time.
0 commit comments