Is there any possibility to fill specific login form as Pinterest's one in JavaScript?
Here's the link - https://www.pinterest.com/login/
Some hints:
Login field's id is "email"
Password field's id is "password"
There's no chance to fill it by:
document.getElementById("email").value = "username";
document.getElementById("password").value = "password";
because entered data will dissapear after clicking "Login" or clicking into textfields.