I have input field like below
<input type="password" placeholder="Password" autocorrect="off" maxlength="30" autofocus="autofocus" animate="true" label="" rules="[object Object]">
and button like below
<button type="submit" class="button-orange wide">Login <!----></button>
So i am filling password with pure javascript like below
document.querySelectorAll('input[type=password]')[0].value = "12345";
document.querySelectorAll('.button-orange')[0].click();
Problem is the actual website is tracking keydown or something , its always alerting me password is empty also when i focus on input password tab , Password filled getting empty.
How do i fill password like real human typed it.