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',
|
__all__ = ['BrowserIncorrectPassword', 'BrowserBanned', 'BrowserUnavailable', 'BrowserRetry',
|
||||||
'BasePage', 'BaseBrowser', ]
|
'BasePage', 'BaseBrowser', 'ExpectedElementNotFound']
|
||||||
|
|
||||||
|
|
||||||
# Exceptions
|
# Exceptions
|
||||||
|
|
@ -59,6 +59,9 @@ class BrowserUnavailable(Exception):
|
||||||
class BrowserRetry(Exception):
|
class BrowserRetry(Exception):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
class ExpectedElementNotFound(Exception):
|
||||||
|
pass
|
||||||
|
|
||||||
class NoHistory(object):
|
class NoHistory(object):
|
||||||
"""
|
"""
|
||||||
We don't want to fill memory with history
|
We don't want to fill memory with history
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue