I am trying out Javascript on Microsofts platform from the console.
What I have done, is to enter the value of the form like this
document.forms[0][0].value="[email protected]";
When I search for the next button, I can do that file as well
document.forms[0][3]
My problem occur when I try to click the button with javascript using
document.forms[0][3].click()
What is strange here is that when i MANUALLY click the button “Next” it works, but it doesnt seem to work with JavaScript.
What am i doing wrong?
2