Is there any way I can put a text in a browser textfield that is not hosted on localhost? I know that I could inject mouse down on a textfield and user can type on his own a text string using his keyboard. The point is to do it from the code.
Something like:
injectBrowserMouseDown
injectBrowserMouseUp
injectBrowserTextInput("abcdefg")
I wanted to use JS to get element by id and update innerText, but executeJavaScript does not with remote addresses.