Improve the error output for incorrect usage of page objects

This commit is contained in:
Michael Mintz 2021-02-18 23:31:51 -05:00
parent 40729e815b
commit 00ef684bde
2 changed files with 213 additions and 0 deletions

View File

@ -1,5 +1,6 @@
""" SeleniumBase Exceptions
NoSuchFileException => Used by self.assert_downloaded_file(...)
OutOfScopeException => Used by BaseCase methods when setUp() is skipped
TimeLimitExceededException => Used by "--time-limit=SECONDS"
"""
@ -8,5 +9,9 @@ class NoSuchFileException(Exception):
pass
class OutOfScopeException(Exception):
pass
class TimeLimitExceededException(Exception):
pass

File diff suppressed because it is too large Load Diff