Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ websockets~=13.1;python_version<"3.9"
websockets>=15.0.1;python_version>="3.9"
filelock~=3.16.1;python_version<"3.9"
filelock>=3.18.0;python_version>="3.9"
fasteners>=0.19
fasteners>=0.20
mycdp>=1.2.0
pynose>=1.5.4
platformdirs>=4.3.6;python_version<"3.9"
Expand All @@ -23,7 +23,7 @@ MarkupSafe>=3.0.2;python_version>="3.9"
Jinja2>=3.1.6
six>=1.17.0
parse>=1.20.2
parse-type>=0.6.4
parse-type>=0.6.6
colorama>=0.4.6
pyyaml>=6.0.2
pygments>=2.19.2
Expand All @@ -32,7 +32,7 @@ tabcompleter>=1.4.0
pdbp>=1.7.1
idna==3.10
chardet==5.2.0
charset-normalizer>=3.4.2,<4
charset-normalizer>=3.4.3,<4
urllib3>=1.26.20,<2;python_version<"3.10"
urllib3>=1.26.20,<2.6.0;python_version>="3.10"
requests==2.32.4
Expand All @@ -46,7 +46,7 @@ wsproto==1.2.0
websocket-client==1.8.0
selenium==4.27.1;python_version<"3.9"
selenium==4.32.0;python_version>="3.9" and python_version<"3.10"
selenium==4.34.2;python_version>="3.10"
selenium==4.35.0;python_version>="3.10"
cssselect==1.2.0;python_version<"3.9"
cssselect==1.3.0;python_version>="3.9"
sortedcontainers==2.4.0
Expand All @@ -69,15 +69,16 @@ soupsieve==2.7
beautifulsoup4==4.13.4
pyotp==2.9.0
python-xlib==0.33;platform_system=="Linux"
markdown-it-py==3.0.0
markdown-it-py==3.0.0;python_version<"3.10"
markdown-it-py==4.0.0;python_version>="3.10"
mdurl==0.1.2
rich>=14.1.0,<15

# --- Testing Requirements --- #
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)

coverage>=7.6.1;python_version<"3.9"
coverage>=7.10.2;python_version>="3.9"
coverage>=7.10.3;python_version>="3.9"
pytest-cov>=5.0.0;python_version<"3.9"
pytest-cov>=6.2.1;python_version>="3.9"
flake8==5.0.4;python_version<"3.9"
Expand Down
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.40.8"
__version__ = "4.41.0"
4 changes: 2 additions & 2 deletions seleniumbase/core/browser_launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,9 +285,9 @@ def extend_driver(
if proxy_auth:
# Proxy needs a moment to load in Manifest V3
if use_uc:
time.sleep(0.12)
time.sleep(0.14)
else:
time.sleep(0.22)
time.sleep(0.28)
return driver


Expand Down
4 changes: 2 additions & 2 deletions seleniumbase/core/sb_cdp.py
Original file line number Diff line number Diff line change
Expand Up @@ -1695,9 +1695,9 @@ def gui_drag_drop_points(self, x1, y1, x2, y2, timeframe=0.35):
self.set_window_rect(win_x, win_y, width, height)
self.__add_light_pause()
x1 = x1 * width_ratio
y1 = y1 * width_ratio
y1 = y1 * (width_ratio - 0.02)
x2 = x2 * width_ratio
y2 = y2 * width_ratio
y2 = y2 * (width_ratio - 0.02)
self.bring_active_window_to_front()
self.__gui_drag_drop(
x1, y1, x2, y2, timeframe=timeframe, uc_lock=False
Expand Down
15 changes: 8 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
'websockets>=15.0.1;python_version>="3.9"',
'filelock~=3.16.1;python_version<"3.9"',
'filelock>=3.18.0;python_version>="3.9"',
'fasteners>=0.19',
'fasteners>=0.20',
"mycdp>=1.2.0",
"pynose>=1.5.4",
'platformdirs>=4.3.6;python_version<"3.9"',
Expand All @@ -171,7 +171,7 @@
"Jinja2>=3.1.6",
"six>=1.17.0",
'parse>=1.20.2',
'parse-type>=0.6.4',
'parse-type>=0.6.6',
'colorama>=0.4.6',
'pyyaml>=6.0.2',
'pygments>=2.19.2',
Expand All @@ -180,7 +180,7 @@
"pdbp>=1.7.1",
"idna==3.10",
'chardet==5.2.0',
'charset-normalizer>=3.4.2,<4',
'charset-normalizer>=3.4.3,<4',
'urllib3>=1.26.20,<2;python_version<"3.10"',
'urllib3>=1.26.20,<2.6.0;python_version>="3.10"',
'requests==2.32.4',
Expand All @@ -194,7 +194,7 @@
'websocket-client==1.8.0',
'selenium==4.27.1;python_version<"3.9"',
'selenium==4.32.0;python_version>="3.9" and python_version<"3.10"',
'selenium==4.34.2;python_version>="3.10"',
'selenium==4.35.0;python_version>="3.10"',
'cssselect==1.2.0;python_version<"3.9"',
'cssselect==1.3.0;python_version>="3.9"',
"sortedcontainers==2.4.0",
Expand All @@ -217,7 +217,8 @@
"beautifulsoup4==4.13.4",
'pyotp==2.9.0',
'python-xlib==0.33;platform_system=="Linux"',
'markdown-it-py==3.0.0',
'markdown-it-py==3.0.0;python_version<"3.10"',
'markdown-it-py==4.0.0;python_version>="3.10"',
'mdurl==0.1.2',
'rich>=14.1.0,<15',
],
Expand All @@ -234,7 +235,7 @@
# Usage: coverage run -m pytest; coverage html; coverage report
"coverage": [
'coverage>=7.6.1;python_version<"3.9"',
'coverage>=7.10.2;python_version>="3.9"',
'coverage>=7.10.3;python_version>="3.9"',
'pytest-cov>=5.0.0;python_version<"3.9"',
'pytest-cov>=6.2.1;python_version>="3.9"',
],
Expand Down Expand Up @@ -267,7 +268,7 @@
'pdfminer.six==20250324;python_version<"3.9"',
'pdfminer.six==20250506;python_version>="3.9"',
'cryptography==39.0.2;python_version<"3.9"',
'cryptography==45.0.5;python_version>="3.9"',
'cryptography==45.0.6;python_version>="3.9"',
'cffi==1.17.1',
"pycparser==2.22",
],
Expand Down