On my website, I want to access my second website programmatically and type something in my textbox.
I've tried this post, but the answer is in Swift or Objective-C.
My First website:
function typesomething() {
window.open('https://www.example.com', '_blank').focus();
// Now, I want to get the textbox from the second website and type this 'Types Text'
}
<button onclick="typesomething()">type something in different website</button>
Second website:
<textarea>programmatically type something from my different website</textarea>
<!-- this website is https://www.example.com -->