You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
update_text_value(selector, text) # updates the text from the specified element with the specified value. Exception raised if element missing or field not editable. Example:
422
+
update_text(selector, text) # updates the text from the specified element with the specified value. Exception raised if element missing or field not editable. Example:
423
423
424
424
```python
425
-
self.update_text_value("input#id_value", "2012")
425
+
self.update_text("input#id_value", "2012")
426
426
```
427
427
428
428
You can also use the WebDriver .send_keys() command, but it won't clear the text box first if there's already text inside.
0 commit comments