syncloud-lib 307__tar.gz → 308__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {syncloud-lib-307/syncloud_lib.egg-info → syncloud-lib-308}/PKG-INFO +1 -1
- {syncloud-lib-307 → syncloud-lib-308/syncloud_lib.egg-info}/PKG-INFO +1 -1
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/integration/conftest.py +5 -13
- syncloud-lib-308/version +1 -0
- syncloud-lib-307/version +0 -1
- {syncloud-lib-307 → syncloud-lib-308}/LICENSE +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/MANIFEST.in +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/setup.cfg +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/setup.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloud_lib.egg-info/SOURCES.txt +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloud_lib.egg-info/dependency_links.txt +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloud_lib.egg-info/requires.txt +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloud_lib.egg-info/top_level.txt +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/__init__.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/application/__init__.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/application/config.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/application/connection.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/application/paths.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/application/ports.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/application/service.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/application/storage.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/application/urls.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/application/users.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/error.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/fs.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/gen.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/http.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/integration/__init__.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/integration/device.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/integration/hosts.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/integration/installer.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/integration/loop.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/integration/screenshots.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/integration/selenium_wrapper.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/integration/ssh.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/json/__init__.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/json/convertible.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/linux.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/syncloudlib/logger.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/test/application/test_connection.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/test/application/test_paths.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/test/application/test_service.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/test/application/test_storage.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/test/application/test_urls.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/test/integration/test_hosts.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/test/integration/test_installer.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/test/integration/test_loop.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/test/integration/test_ssh.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/test/json/test_convertible.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/test/test_fs.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/test/test_gen.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/test/test_linux.py +0 -0
- {syncloud-lib-307 → syncloud-lib-308}/test/test_logger.py +0 -0
|
@@ -129,40 +129,32 @@ def service_prefix():
|
|
|
129
129
|
|
|
130
130
|
def new_firefox_driver(user_agent, hub_url):
|
|
131
131
|
|
|
132
|
-
caps = DesiredCapabilities.FIREFOX.copy()
|
|
133
|
-
caps['acceptSslCerts'] = True
|
|
134
|
-
caps['acceptInsecureCerts'] = True
|
|
135
|
-
caps['javascriptEnabled'] = True
|
|
136
|
-
caps['se:recordVideo'] = True
|
|
137
|
-
|
|
138
132
|
options = webdriver.FirefoxOptions()
|
|
139
133
|
options.set_preference('app.update.auto', False)
|
|
140
134
|
options.set_preference('app.update.enabled', False)
|
|
141
135
|
options.set_preference("general.useragent.override", user_agent)
|
|
142
136
|
options.set_preference("devtools.console.stdout.content", True)
|
|
137
|
+
options.set_capability('acceptInsecureCerts', True)
|
|
138
|
+
options.set_capability('se:recordVideo', True)
|
|
143
139
|
|
|
144
140
|
return webdriver.Remote(
|
|
145
141
|
command_executor=hub_url,
|
|
146
|
-
desired_capabilities=caps,
|
|
147
142
|
options=options
|
|
148
143
|
)
|
|
149
144
|
|
|
150
145
|
|
|
151
146
|
def new_chrome_driver(user_agent, hub_url):
|
|
152
147
|
|
|
153
|
-
caps = DesiredCapabilities.CHROME.copy()
|
|
154
|
-
caps['javascriptEnabled'] = True
|
|
155
|
-
caps['acceptInsecureCerts'] = True
|
|
156
|
-
caps['se:recordVideo'] = True
|
|
157
|
-
|
|
158
148
|
options = webdriver.ChromeOptions()
|
|
159
149
|
options.add_argument('user-agent={}'.format(user_agent))
|
|
160
150
|
#options.add_argument('--headless')
|
|
161
151
|
options.add_argument('--no-sandbox')
|
|
162
152
|
options.add_argument('--disable-dev-shm-usage')
|
|
153
|
+
options.set_capability('goog:loggingPrefs', {'performance': 'ALL'})
|
|
154
|
+
options.set_capability('acceptInsecureCerts', True)
|
|
155
|
+
options.set_capability('se:recordVideo', True)
|
|
163
156
|
return webdriver.Remote(
|
|
164
157
|
command_executor=hub_url,
|
|
165
|
-
desired_capabilities=caps,
|
|
166
158
|
options=options
|
|
167
159
|
)
|
|
168
160
|
|
syncloud-lib-308/version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
308
|
syncloud-lib-307/version
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
307
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|