You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The root cause seems to be that Element uses return self.children.get(name) in __getattr__ and this throws ChildNotValid exception, which is not an AttributeError.
It would be great to be able to write:
rather than having to use
hasattr
or handle an exception if the attribute is not present.The text was updated successfully, but these errors were encountered: