add ExpectedElementNotFound exception
This commit is contained in:
parent
b3c509d56e
commit
166bfea683
1 changed files with 4 additions and 1 deletions
|
|
@ -43,7 +43,7 @@ else:
|
|||
|
||||
|
||||
__all__ = ['BrowserIncorrectPassword', 'BrowserBanned', 'BrowserUnavailable', 'BrowserRetry',
|
||||
'BasePage', 'BaseBrowser', ]
|
||||
'BasePage', 'BaseBrowser', 'ExpectedElementNotFound']
|
||||
|
||||
|
||||
# Exceptions
|
||||
|
|
@ -59,6 +59,9 @@ class BrowserUnavailable(Exception):
|
|||
class BrowserRetry(Exception):
|
||||
pass
|
||||
|
||||
class ExpectedElementNotFound(Exception):
|
||||
pass
|
||||
|
||||
class NoHistory(object):
|
||||
"""
|
||||
We don't want to fill memory with history
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue