Source code for pybotlib.exceptions

[docs]class Error(Exception): """Base class for other exceptions""" pass
[docs]class NoElementsSatisfyConditions(Error): """Raised when find_by_tag_and_attr results in an empty list""" pass