bcpkgfox 0.17.7__tar.gz → 0.17.8__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.17.7 → bcpkgfox-0.17.8}/PKG-INFO +1 -1
- {bcpkgfox-0.17.7 → bcpkgfox-0.17.8}/bcpkgfox/invoke_api.py +10 -0
- {bcpkgfox-0.17.7 → bcpkgfox-0.17.8}/bcpkgfox.egg-info/PKG-INFO +1 -1
- {bcpkgfox-0.17.7 → bcpkgfox-0.17.8}/setup.py +1 -1
- {bcpkgfox-0.17.7 → bcpkgfox-0.17.8}/README.md +0 -0
- {bcpkgfox-0.17.7 → bcpkgfox-0.17.8}/bcpkgfox/__init__.py +0 -0
- {bcpkgfox-0.17.7 → bcpkgfox-0.17.8}/bcpkgfox/clean.py +0 -0
- {bcpkgfox-0.17.7 → bcpkgfox-0.17.8}/bcpkgfox/cli.py +0 -0
- {bcpkgfox-0.17.7 → bcpkgfox-0.17.8}/bcpkgfox/find_elements.py +0 -0
- {bcpkgfox-0.17.7 → bcpkgfox-0.17.8}/bcpkgfox/get_driver.py +0 -0
- {bcpkgfox-0.17.7 → bcpkgfox-0.17.8}/bcpkgfox/system.py +0 -0
- {bcpkgfox-0.17.7 → bcpkgfox-0.17.8}/bcpkgfox.egg-info/SOURCES.txt +0 -0
- {bcpkgfox-0.17.7 → bcpkgfox-0.17.8}/bcpkgfox.egg-info/dependency_links.txt +0 -0
- {bcpkgfox-0.17.7 → bcpkgfox-0.17.8}/bcpkgfox.egg-info/entry_points.txt +0 -0
- {bcpkgfox-0.17.7 → bcpkgfox-0.17.8}/bcpkgfox.egg-info/requires.txt +0 -0
- {bcpkgfox-0.17.7 → bcpkgfox-0.17.8}/bcpkgfox.egg-info/top_level.txt +0 -0
- {bcpkgfox-0.17.7 → bcpkgfox-0.17.8}/setup.cfg +0 -0
|
@@ -444,6 +444,7 @@ def login_2fac(driver, certificate, system, token, code_timeout=60):
|
|
|
444
444
|
timeout=1).click()
|
|
445
445
|
time.sleep(1)
|
|
446
446
|
self.codes_2_fac()
|
|
447
|
+
self.select_system()
|
|
447
448
|
return
|
|
448
449
|
except:
|
|
449
450
|
pass
|
|
@@ -495,6 +496,15 @@ def login_2fac(driver, certificate, system, token, code_timeout=60):
|
|
|
495
496
|
mostrar_mensagem('Mais de um sistema encontrado, verifique o nome do sistema no WHOOM e coloque um nome único na função')
|
|
496
497
|
raise ValueError('Mais de um sistema encontrado, verifique o nome')
|
|
497
498
|
|
|
499
|
+
try:
|
|
500
|
+
tools.find_element_with_wait(By.XPATH, '//input[@placeholder="Insira aqui o seu email"]',
|
|
501
|
+
timeout=1).click()
|
|
502
|
+
time.sleep(1)
|
|
503
|
+
self.codes_2_fac()
|
|
504
|
+
self.select_system()
|
|
505
|
+
return
|
|
506
|
+
except:
|
|
507
|
+
pass
|
|
498
508
|
|
|
499
509
|
# Verifies if the system was opened
|
|
500
510
|
for _ in range(30):
|
|
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
|