diff --git a/automon/integrations/seleniumWrapper/exceptions.py b/automon/integrations/seleniumWrapper/exceptions.py index 7b611a10..9a234afe 100644 --- a/automon/integrations/seleniumWrapper/exceptions.py +++ b/automon/integrations/seleniumWrapper/exceptions.py @@ -6,5 +6,9 @@ class ActionTypeException(Exception): pass -class NoSuchElementException(Exception): +class ElementNotFoundException(Exception): + pass + + +class XpathNotFoundException(ElementNotFoundException): pass