Same as self.update_text()
(
self, selector, text, by="css selector", timeout=None, retry=False
)
| 9724 | self.save_page_source(name, folder=folder) |
| 9725 | |
| 9726 | def input( |
| 9727 | self, selector, text, by="css selector", timeout=None, retry=False |
| 9728 | ): |
| 9729 | """Same as self.update_text()""" |
| 9730 | self.update_text(selector, text, by=by, timeout=timeout, retry=retry) |
| 9731 | |
| 9732 | def fill( |
| 9733 | self, selector, text, by="css selector", timeout=None, retry=False |
nothing calls this directly
no test coverage detected