Skip to content

Commit 4007c95

Browse files
authored
Merge pull request #2961 from seleniumbase/update-options-and-dependencies
Update options and dependencies
2 parents b8996a6 + a384076 commit 4007c95

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

mkdocs_build/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# mkdocs dependencies for generating the seleniumbase.io website
22
# Minimum Python version: 3.8 (for generating docs only)
33

4-
regex>=2024.5.15
4+
regex>=2024.7.24
55
pymdown-extensions>=10.8.1
66
pipdeptree>=2.23.1
77
python-dateutil>=2.8.2

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ pluggy==1.2.0;python_version<"3.8"
4646
pluggy==1.5.0;python_version>="3.8"
4747
py==1.11.0
4848
pytest==7.4.4;python_version<"3.8"
49-
pytest==8.3.1;python_version>="3.8"
49+
pytest==8.3.2;python_version>="3.8"
5050
pytest-html==2.0.1
5151
pytest-metadata==3.0.0;python_version<"3.8"
5252
pytest-metadata==3.1.1;python_version>="3.8"

seleniumbase/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# seleniumbase package
2-
__version__ = "4.29.0"
2+
__version__ = "4.29.1"

seleniumbase/core/browser_launcher.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1659,6 +1659,7 @@ def _set_chrome_options(
16591659
if user_agent:
16601660
chrome_options.add_argument("--user-agent=%s" % user_agent)
16611661
chrome_options.add_argument("--safebrowsing-disable-download-protection")
1662+
chrome_options.add_argument("--disable-search-engine-choice-screen")
16621663
chrome_options.add_argument("--disable-browser-side-navigation")
16631664
chrome_options.add_argument("--disable-save-password-bubble")
16641665
chrome_options.add_argument("--disable-single-click-autofill")
@@ -3221,6 +3222,7 @@ def get_local_driver(
32213222
"--disable-autofill-keyboard-accessory-view[8]"
32223223
)
32233224
edge_options.add_argument("--safebrowsing-disable-download-protection")
3225+
edge_options.add_argument("--disable-search-engine-choice-screen")
32243226
edge_options.add_argument("--disable-browser-side-navigation")
32253227
edge_options.add_argument("--disable-translate")
32263228
if not enable_ws:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@
194194
'pluggy==1.5.0;python_version>="3.8"',
195195
"py==1.11.0", # Needed by pytest-html
196196
'pytest==7.4.4;python_version<"3.8"',
197-
'pytest==8.3.1;python_version>="3.8"',
197+
'pytest==8.3.2;python_version>="3.8"',
198198
"pytest-html==2.0.1", # Newer ones had issues
199199
'pytest-metadata==3.0.0;python_version<"3.8"',
200200
'pytest-metadata==3.1.1;python_version>="3.8"',

0 commit comments

Comments
 (0)