(self, element)
| 1058 | self.find_element(selector).highlight_overlay() |
| 1059 | |
| 1060 | def get_parent(self, element): |
| 1061 | if isinstance(element, str): |
| 1062 | element = self.select(element) |
| 1063 | return self.__add_sync_methods(element.parent) |
| 1064 | |
| 1065 | def remove_element(self, selector): |
| 1066 | self.select(selector).remove_from_dom() |
nothing calls this directly
no test coverage detected