Hello,
I'm trying to make a bot for creating instagram accounts. I already developed email account creator for insta but now I have a problem.
Bot is requesting instagram url and it tries to complete input forms. Here is the code that it runs in browser console:

Code:
document.getElementsByTagName('input')[0].setAttribute('value','{0}')
You can try to run it on instagram login page and you will see what I mean.

It sets it in input field but when you click on it or try to submit form it will disappear.How can I bypass it? Also I program it in C# but commands are running in javascript so it is on this subforum. Here is code in C# if it will help anyone:

Code:
string email = String.Format("document.getElementsByTagName('input')[0].setAttribute('value','{0}')", text5);
await webView2.InvokeScriptAsync("eval", new string[] { email });