Raised when the timeout expired while waiting for some condition to be fulfilled, e.g. waiting for the specific UI element but it has not appeared on the screen.
| 44 | |
| 45 | |
| 46 | class PocoTargetTimeout(PocoException): |
| 47 | """ |
| 48 | Raised when the timeout expired while waiting for some condition to be fulfilled, e.g. waiting for the specific |
| 49 | UI element but it has not appeared on the screen. |
| 50 | """ |
| 51 | |
| 52 | def __init__(self, action, poco_obj_proxy): |
| 53 | super(PocoTargetTimeout, self).__init__() |
| 54 | self.message = 'Waiting timeout for {} of "{}"'.format(action, to_text(repr(poco_obj_proxy))) |
| 55 | |
| 56 | |
| 57 | class PocoNoSuchNodeException(PocoException): |
no outgoing calls
no test coverage detected