File tree Expand file tree Collapse file tree 5 files changed +6
-4
lines changed Expand file tree Collapse file tree 5 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
# mkdocs dependencies for generating the seleniumbase.io website
2
2
# Minimum Python version: 3.8 (for generating docs only)
3
3
4
- regex >= 2024.5.15
4
+ regex >= 2024.7.24
5
5
pymdown-extensions >= 10.8.1
6
6
pipdeptree >= 2.23.1
7
7
python-dateutil >= 2.8.2
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ pluggy==1.2.0;python_version<"3.8"
46
46
pluggy == 1.5.0 ;python_version >= "3.8"
47
47
py == 1.11.0
48
48
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"
50
50
pytest-html == 2.0.1
51
51
pytest-metadata == 3.0.0 ;python_version < "3.8"
52
52
pytest-metadata == 3.1.1 ;python_version >= "3.8"
Original file line number Diff line number Diff line change 1
1
# seleniumbase package
2
- __version__ = "4.29.0 "
2
+ __version__ = "4.29.1 "
Original file line number Diff line number Diff line change @@ -1659,6 +1659,7 @@ def _set_chrome_options(
1659
1659
if user_agent :
1660
1660
chrome_options .add_argument ("--user-agent=%s" % user_agent )
1661
1661
chrome_options .add_argument ("--safebrowsing-disable-download-protection" )
1662
+ chrome_options .add_argument ("--disable-search-engine-choice-screen" )
1662
1663
chrome_options .add_argument ("--disable-browser-side-navigation" )
1663
1664
chrome_options .add_argument ("--disable-save-password-bubble" )
1664
1665
chrome_options .add_argument ("--disable-single-click-autofill" )
@@ -3221,6 +3222,7 @@ def get_local_driver(
3221
3222
"--disable-autofill-keyboard-accessory-view[8]"
3222
3223
)
3223
3224
edge_options .add_argument ("--safebrowsing-disable-download-protection" )
3225
+ edge_options .add_argument ("--disable-search-engine-choice-screen" )
3224
3226
edge_options .add_argument ("--disable-browser-side-navigation" )
3225
3227
edge_options .add_argument ("--disable-translate" )
3226
3228
if not enable_ws :
Original file line number Diff line number Diff line change 194
194
'pluggy==1.5.0;python_version>="3.8"' ,
195
195
"py==1.11.0" , # Needed by pytest-html
196
196
'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"' ,
198
198
"pytest-html==2.0.1" , # Newer ones had issues
199
199
'pytest-metadata==3.0.0;python_version<"3.8"' ,
200
200
'pytest-metadata==3.1.1;python_version>="3.8"' ,
You can’t perform that action at this time.
0 commit comments