diff options
Diffstat (limited to 'services/frontend')
-rw-r--r-- | services/frontend/base_actions/wait.py | 6 | ||||
-rw-r--r-- | services/frontend/fe_cms.py | 2 | ||||
-rw-r--r-- | services/frontend/fe_general.py | 2 |
3 files changed, 4 insertions, 6 deletions
diff --git a/services/frontend/base_actions/wait.py b/services/frontend/base_actions/wait.py index 4434bb1..642f0ab 100644 --- a/services/frontend/base_actions/wait.py +++ b/services/frontend/base_actions/wait.py @@ -150,8 +150,8 @@ class Wait: ) return True # If failed - count the failure and add the error to list of errors. - except Exception as e: - error_msg = "Didn't find CSS Selector " + element_css + except Exception: + # error_msg = "Didn't find CSS Selector " + element_css return False @staticmethod @@ -210,7 +210,7 @@ class Wait: "Checking if {} page is loaded. ".format( session.ice_driver.current_url)) time.sleep(session.wait_until_time_pause) - except Exception as exception: + except Exception: time.sleep(session.wait_until_time_pause) continue diff --git a/services/frontend/fe_cms.py b/services/frontend/fe_cms.py index 9f5300d..168a09a 100644 --- a/services/frontend/fe_cms.py +++ b/services/frontend/fe_cms.py @@ -40,10 +40,8 @@ from services.constants import Constants from services.database.db_cms import DBCMS from services.frontend.base_actions.click import Click from services.frontend.base_actions.enter import Enter -from services.frontend.base_actions.get import Get from services.frontend.base_actions.wait import Wait from services.frontend.fe_dashboard import FEDashboard -from services.frontend.fe_general import FEGeneral from services.frontend.fe_user import FEUser from services.logging_service import LoggingServiceFactory from services.session import session diff --git a/services/frontend/fe_general.py b/services/frontend/fe_general.py index 10f9c72..5974801 100644 --- a/services/frontend/fe_general.py +++ b/services/frontend/fe_general.py @@ -121,7 +121,7 @@ class FEGeneral(Helper): Wait.page_has_loaded() success = True break - except: + except Exception: i += 1 time.sleep(1) pass |