fidelity-api 0.0.6__tar.gz → 0.0.7__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.
- {fidelity-api-0.0.6/fidelity_api.egg-info → fidelity-api-0.0.7}/PKG-INFO +1 -1
- {fidelity-api-0.0.6 → fidelity-api-0.0.7}/fidelity/fidelity.py +6 -2
- {fidelity-api-0.0.6 → fidelity-api-0.0.7/fidelity_api.egg-info}/PKG-INFO +1 -1
- {fidelity-api-0.0.6 → fidelity-api-0.0.7}/setup.py +1 -1
- {fidelity-api-0.0.6 → fidelity-api-0.0.7}/LICENSE +0 -0
- {fidelity-api-0.0.6 → fidelity-api-0.0.7}/README.md +0 -0
- {fidelity-api-0.0.6 → fidelity-api-0.0.7}/fidelity/__init__.py +0 -0
- {fidelity-api-0.0.6 → fidelity-api-0.0.7}/fidelity_api.egg-info/SOURCES.txt +0 -0
- {fidelity-api-0.0.6 → fidelity-api-0.0.7}/fidelity_api.egg-info/dependency_links.txt +0 -0
- {fidelity-api-0.0.6 → fidelity-api-0.0.7}/fidelity_api.egg-info/requires.txt +0 -0
- {fidelity-api-0.0.6 → fidelity-api-0.0.7}/fidelity_api.egg-info/top_level.txt +0 -0
- {fidelity-api-0.0.6 → fidelity-api-0.0.7}/setup.cfg +0 -0
|
@@ -998,8 +998,12 @@ class FidelityAutomation:
|
|
|
998
998
|
self.wait_for_loading_sign()
|
|
999
999
|
|
|
1000
1000
|
# If application is already started, then there will only be 1 "Next" button
|
|
1001
|
-
|
|
1002
|
-
|
|
1001
|
+
# Rarely there will be no "Next" button
|
|
1002
|
+
try:
|
|
1003
|
+
self.page.get_by_role("button", name="Next").click(timeout=15000)
|
|
1004
|
+
self.wait_for_loading_sign()
|
|
1005
|
+
except:
|
|
1006
|
+
pass
|
|
1003
1007
|
|
|
1004
1008
|
# Open account
|
|
1005
1009
|
self.page.get_by_role("button", name="Open account").click()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|