(self, selector, timeout)
| 15301 | element.send_keys(backspaces) |
| 15302 | |
| 15303 | def __get_shadow_text(self, selector, timeout): |
| 15304 | element = self.__get_shadow_element( |
| 15305 | selector, timeout=timeout, must_be_visible=True |
| 15306 | ) |
| 15307 | element_text = element.text |
| 15308 | if self.browser == "safari": |
| 15309 | element_text = element.get_attribute("innerText") |
| 15310 | return element_text |
| 15311 | |
| 15312 | def __get_shadow_attribute(self, selector, attribute, timeout): |
| 15313 | element = self.__get_shadow_element(selector, timeout=timeout) |
no test coverage detected