Skip to content

Commit 4a0b11e

Browse files
authored
Merge pull request #471 from seleniumbase/reduce-unwanted-logging-messages
Reduce unwanted logging messages on Windows
2 parents c5748f8 + aafd03f commit 4a0b11e

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ Additionally, you can use the ``@retry_on_exception()`` decorator to specificall
657657

658658
<i>**Questions?**</i> [![Join the chat at https://gitter.im/seleniumbase/SeleniumBase](https://badges.gitter.im/seleniumbase/SeleniumBase.svg)](https://gitter.im/seleniumbase/SeleniumBase?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)<br />
659659

660-
If you see something, say something! We're very active in resolving issues. [<img src="https://img.shields.io/github/issues-closed-raw/seleniumbase/SeleniumBase.svg" alt=" " />](https://github.com/seleniumbase/SeleniumBase/issues?q=is%3Aissue+is%3Aclosed)
660+
**If you see something, say something!**<br />[<img src="https://img.shields.io/github/issues-closed-raw/seleniumbase/SeleniumBase.svg?color=22BB88" alt=" " />](https://github.com/seleniumbase/SeleniumBase/issues?q=is%3Aissue+is%3Aclosed) [<img src="https://img.shields.io/github/issues-pr-closed/seleniumbase/SeleniumBase.svg?logo=github&logoColor=white&color=22BB99">](https://github.com/seleniumbase/SeleniumBase/pulls?q=is%3Apr+is%3Aclosed)
661661

662662
[https://github.com/mdmintz](https://github.com/mdmintz)<br />
663663

seleniumbase/core/browser_launcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def _set_chrome_options(
141141
chrome_options.add_experimental_option("prefs", prefs)
142142
chrome_options.add_experimental_option("w3c", True)
143143
chrome_options.add_experimental_option(
144-
"excludeSwitches", ["enable-automation"])
144+
"excludeSwitches", ["enable-automation", "enable-logging"])
145145
if servername == "localhost" or servername == "127.0.0.1":
146146
chrome_options.add_experimental_option("useAutomationExtension", False)
147147
if mobile_emulator:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646
setup(
4747
name='seleniumbase',
48-
version='1.34.15',
48+
version='1.34.16',
4949
description='Fast, Easy, and Reliable Browser Automation & Testing.',
5050
long_description=long_description,
5151
long_description_content_type='text/markdown',

virtualenv_install.bat

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
:: virtualenv commands such as "mkvirtualenv [ENV_NAME]"
44
:: for creating and using Python virtual environments.
55

6-
python -m pip install --upgrade virtualenv
76
python -m pip install --upgrade virtualenvwrapper-win
87
echo:
98
echo:

0 commit comments

Comments
 (0)