bcpkgfox 0.16.68__tar.gz → 0.16.70__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.
Potentially problematic release.
This version of bcpkgfox might be problematic. Click here for more details.
- {bcpkgfox-0.16.68 → bcpkgfox-0.16.70}/PKG-INFO +1 -1
- {bcpkgfox-0.16.68 → bcpkgfox-0.16.70}/bcpkgfox/invoke_api.py +7 -3
- {bcpkgfox-0.16.68 → bcpkgfox-0.16.70}/bcpkgfox.egg-info/PKG-INFO +1 -1
- {bcpkgfox-0.16.68 → bcpkgfox-0.16.70}/setup.py +1 -1
- {bcpkgfox-0.16.68 → bcpkgfox-0.16.70}/README.md +0 -0
- {bcpkgfox-0.16.68 → bcpkgfox-0.16.70}/bcpkgfox/__init__.py +0 -0
- {bcpkgfox-0.16.68 → bcpkgfox-0.16.70}/bcpkgfox/clean.py +0 -0
- {bcpkgfox-0.16.68 → bcpkgfox-0.16.70}/bcpkgfox/cli.py +0 -0
- {bcpkgfox-0.16.68 → bcpkgfox-0.16.70}/bcpkgfox/find_elements.py +0 -0
- {bcpkgfox-0.16.68 → bcpkgfox-0.16.70}/bcpkgfox/get_driver.py +0 -0
- {bcpkgfox-0.16.68 → bcpkgfox-0.16.70}/bcpkgfox/system.py +0 -0
- {bcpkgfox-0.16.68 → bcpkgfox-0.16.70}/bcpkgfox.egg-info/SOURCES.txt +0 -0
- {bcpkgfox-0.16.68 → bcpkgfox-0.16.70}/bcpkgfox.egg-info/dependency_links.txt +0 -0
- {bcpkgfox-0.16.68 → bcpkgfox-0.16.70}/bcpkgfox.egg-info/entry_points.txt +0 -0
- {bcpkgfox-0.16.68 → bcpkgfox-0.16.70}/bcpkgfox.egg-info/requires.txt +0 -0
- {bcpkgfox-0.16.68 → bcpkgfox-0.16.70}/bcpkgfox.egg-info/top_level.txt +0 -0
- {bcpkgfox-0.16.68 → bcpkgfox-0.16.70}/setup.cfg +0 -0
|
@@ -404,9 +404,13 @@ def login_2fac(driver, certificate, system, token, code_timeout=60):
|
|
|
404
404
|
else:
|
|
405
405
|
break
|
|
406
406
|
|
|
407
|
-
|
|
408
|
-
self.driver.
|
|
409
|
-
self.driver.switch_to.window(
|
|
407
|
+
time.sleep(5)
|
|
408
|
+
handles = self.driver.window_handles
|
|
409
|
+
self.driver.switch_to.window(handles[-1])
|
|
410
|
+
if len(handles) > 1:
|
|
411
|
+
self.driver.switch_to.window(handles[0])
|
|
412
|
+
self.driver.close()
|
|
413
|
+
self.driver.switch_to.window(handles[-1])
|
|
410
414
|
|
|
411
415
|
def extension_check(self):
|
|
412
416
|
|
|
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
|