Highlights the element, and then clicks it.
(
self, selector, by="css selector", loops=3, scroll=True, timeout=None,
)
| 6551 | pass |
| 6552 | |
| 6553 | def highlight_click( |
| 6554 | self, selector, by="css selector", loops=3, scroll=True, timeout=None, |
| 6555 | ): |
| 6556 | """Highlights the element, and then clicks it.""" |
| 6557 | self.__check_scope() |
| 6558 | if not timeout: |
| 6559 | timeout = settings.SMALL_TIMEOUT |
| 6560 | self.wait_for_element_visible(selector, by=by, timeout=timeout) |
| 6561 | if not self.demo_mode: |
| 6562 | self.__highlight(selector, by=by, loops=loops, scroll=scroll) |
| 6563 | self.click(selector, by=by) |
| 6564 | |
| 6565 | def highlight_update_text( |
| 6566 | self, |