The command to check if this element is displayed.
Element.is_displayed() -> bool
py.get("#button").is_displayed()
None
bool - True if the element is displayed, else False
"displayed" means that the element is in the DOM and has a size greater than zero such that it is visible to the user.
Last updated 3 years ago