bcpkgfox 0.16.56__tar.gz → 0.16.57__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.56 → bcpkgfox-0.16.57}/PKG-INFO +1 -1
- {bcpkgfox-0.16.56 → bcpkgfox-0.16.57}/bcpkgfox/invoke_api.py +3 -2
- {bcpkgfox-0.16.56 → bcpkgfox-0.16.57}/bcpkgfox.egg-info/PKG-INFO +1 -1
- {bcpkgfox-0.16.56 → bcpkgfox-0.16.57}/setup.py +1 -1
- {bcpkgfox-0.16.56 → bcpkgfox-0.16.57}/README.md +0 -0
- {bcpkgfox-0.16.56 → bcpkgfox-0.16.57}/bcpkgfox/__init__.py +0 -0
- {bcpkgfox-0.16.56 → bcpkgfox-0.16.57}/bcpkgfox/clean.py +0 -0
- {bcpkgfox-0.16.56 → bcpkgfox-0.16.57}/bcpkgfox/cli.py +0 -0
- {bcpkgfox-0.16.56 → bcpkgfox-0.16.57}/bcpkgfox/find_elements.py +0 -0
- {bcpkgfox-0.16.56 → bcpkgfox-0.16.57}/bcpkgfox/get_driver.py +0 -0
- {bcpkgfox-0.16.56 → bcpkgfox-0.16.57}/bcpkgfox/system.py +0 -0
- {bcpkgfox-0.16.56 → bcpkgfox-0.16.57}/bcpkgfox.egg-info/SOURCES.txt +0 -0
- {bcpkgfox-0.16.56 → bcpkgfox-0.16.57}/bcpkgfox.egg-info/dependency_links.txt +0 -0
- {bcpkgfox-0.16.56 → bcpkgfox-0.16.57}/bcpkgfox.egg-info/entry_points.txt +0 -0
- {bcpkgfox-0.16.56 → bcpkgfox-0.16.57}/bcpkgfox.egg-info/requires.txt +0 -0
- {bcpkgfox-0.16.56 → bcpkgfox-0.16.57}/bcpkgfox.egg-info/top_level.txt +0 -0
- {bcpkgfox-0.16.56 → bcpkgfox-0.16.57}/setup.cfg +0 -0
|
@@ -330,9 +330,10 @@ def login_2fac(driver, certificate, system, token, code_timeout=60):
|
|
|
330
330
|
except:
|
|
331
331
|
try:
|
|
332
332
|
lines = self.find_elements_with_wait(self.driver, By.XPATH, '//*[@id="root"]/div[2]/div/div[2]/div/div[2]/div/div/div', timeout=5)
|
|
333
|
-
except:
|
|
333
|
+
except Exception as e:
|
|
334
334
|
mostrar_mensagem('Não conseguiu achar o sistema no certificado')
|
|
335
|
-
|
|
335
|
+
print(f'{e}\n\n\n\n\n\n')
|
|
336
|
+
raise ValueError('Não conseguiu achar o sistema no certificado') from e
|
|
336
337
|
|
|
337
338
|
finded = False
|
|
338
339
|
div_list = []
|
|
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
|