Skip to content

Commit e7f5358

Browse files
committed
Update raw_selenium example tests
1 parent 363e805 commit e7f5358

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/migration/raw_selenium/flaky_messy_raw.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def setUp(self):
1313
if "linux" in sys.platform:
1414
options.add_argument("--headless")
1515
options.add_experimental_option(
16-
"excludeSwitches", ["enable-automation"],
16+
"excludeSwitches", ["enable-automation", "enable-logging"],
1717
)
1818
prefs = {
1919
"credentials_enable_service": False,

examples/migration/raw_selenium/long_messy_raw.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def setUp(self):
1515
if "linux" in sys.platform:
1616
options.add_argument("--headless")
1717
options.add_experimental_option(
18-
"excludeSwitches", ["enable-automation"],
18+
"excludeSwitches", ["enable-automation", "enable-logging"],
1919
)
2020
prefs = {
2121
"credentials_enable_service": False,

examples/migration/raw_selenium/messy_raw.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def setUp(self):
1414
if "linux" in sys.platform:
1515
options.add_argument("--headless")
1616
options.add_experimental_option(
17-
"excludeSwitches", ["enable-automation"],
17+
"excludeSwitches", ["enable-automation", "enable-logging"],
1818
)
1919
prefs = {
2020
"credentials_enable_service": False,

examples/migration/raw_selenium/refined_raw.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def setUp(self):
1414
if "linux" in sys.platform:
1515
options.add_argument("--headless")
1616
options.add_experimental_option(
17-
"excludeSwitches", ["enable-automation"],
17+
"excludeSwitches", ["enable-automation", "enable-logging"],
1818
)
1919
prefs = {
2020
"credentials_enable_service": False,

0 commit comments

Comments
 (0)