setup-selenium-testing 1.0.0__tar.gz → 1.0.1__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {setup_selenium_testing-1.0.0 → setup_selenium_testing-1.0.1}/PKG-INFO +12 -1
- {setup_selenium_testing-1.0.0 → setup_selenium_testing-1.0.1}/README.md +11 -0
- {setup_selenium_testing-1.0.0 → setup_selenium_testing-1.0.1}/pyproject.toml +1 -1
- {setup_selenium_testing-1.0.0 → setup_selenium_testing-1.0.1}/setup_selenium/setup_selenium.py +2 -2
- {setup_selenium_testing-1.0.0 → setup_selenium_testing-1.0.1}/LICENSE +0 -0
- {setup_selenium_testing-1.0.0 → setup_selenium_testing-1.0.1}/setup_selenium/__init__.py +0 -0
- {setup_selenium_testing-1.0.0 → setup_selenium_testing-1.0.1}/setup_selenium/py.typed +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: setup-selenium-testing
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.1
|
4
4
|
Summary: Setup Selenium for automation testing
|
5
5
|
License: MIT
|
6
6
|
Author: Marcel Wilson
|
@@ -142,3 +142,14 @@ and use that.
|
|
142
142
|
Passing a valid `binary_path` will not trigger any download of the browser.
|
143
143
|
Passing a valid `driver_path` will not trigger any download of the webdriver.
|
144
144
|
|
145
|
+
|
146
|
+
CHANGELOG
|
147
|
+
---------
|
148
|
+
### version 1.0.1
|
149
|
+
|
150
|
+
- removed `--remote-debugging-pipe` from default chrome options (causes older chrome to crash)
|
151
|
+
|
152
|
+
### version 1.0.0
|
153
|
+
|
154
|
+
- official release
|
155
|
+
|
@@ -109,3 +109,14 @@ and use that.
|
|
109
109
|
|
110
110
|
Passing a valid `binary_path` will not trigger any download of the browser.
|
111
111
|
Passing a valid `driver_path` will not trigger any download of the webdriver.
|
112
|
+
|
113
|
+
|
114
|
+
CHANGELOG
|
115
|
+
---------
|
116
|
+
### version 1.0.1
|
117
|
+
|
118
|
+
- removed `--remote-debugging-pipe` from default chrome options (causes older chrome to crash)
|
119
|
+
|
120
|
+
### version 1.0.0
|
121
|
+
|
122
|
+
- official release
|
{setup_selenium_testing-1.0.0 → setup_selenium_testing-1.0.1}/setup_selenium/setup_selenium.py
RENAMED
@@ -325,7 +325,7 @@ class SetupSelenium:
|
|
325
325
|
"--force-color-profile=srgb",
|
326
326
|
"--metrics-recording-only",
|
327
327
|
"--mute-audio",
|
328
|
-
"--remote-debugging-pipe",
|
328
|
+
# "--remote-debugging-pipe",
|
329
329
|
# fixes MUI fade issue
|
330
330
|
"--disable-renderer-backgrounding",
|
331
331
|
# fixes actionchains in headless
|
@@ -482,7 +482,7 @@ class SetupSelenium:
|
|
482
482
|
"--force-color-profile=srgb",
|
483
483
|
"--metrics-recording-only",
|
484
484
|
"--mute-audio",
|
485
|
-
"--remote-debugging-pipe",
|
485
|
+
# "--remote-debugging-pipe",
|
486
486
|
# fixes MUI fade issue
|
487
487
|
"--disable-renderer-backgrounding",
|
488
488
|
# fixes actionchains in headless
|
File without changes
|
File without changes
|
File without changes
|