aboutsummaryrefslogtreecommitdiffstats
path: root/services/frontend/base_actions/wait.py
diff options
context:
space:
mode:
Diffstat (limited to 'services/frontend/base_actions/wait.py')
-rw-r--r--services/frontend/base_actions/wait.py6
1 files changed, 3 insertions, 3 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