I use the command below to set the text input value to "some value", however the value is not set instantly, instead it is set as if it was entered by the user. This is normal for small values, but I use this method to insert large text inside a text field, and I do not want emulated typing to occur, I would like the value to be set instantly, for example, with copy / paste.
browser.text_field(:attr,"val").set "some value"
source share