I have a js for auto fill a form. But when i fill form i need to click input and press any key to trigger list which is related with card number.
Example: when page loaded all areas filling automated
when page loaded all data are filling by javascript. But installemens is no seeing till i click and press any button to card number area.
when i click card number area and press ANY key in keyboard, the result is : real press trigger list
So how can i trigger this list with JS, or how can i simulate click card number area then simulate organic press with js, or anything else for solution. Any advice will be accepted :)
Edit: ofcourse tried;
document.getElementById('elementID').click();
or Is it possible to simulate key press events programmatically?
these solutions not working on my problem :(