I'm currently working on a basic web application that aims to streamline the user experience by eliminating the need for repeated credential input upon website access (without saving passwords). After some exploration, I was able to identify and manipulate the form's fields and submit action in Chrome's console using the following code snippets:
document.getElementById('zonePwd').value="Password"
document.getElementById('zoneId').value="Id"
GInterface.traiterEvenementValidation()
My next goal is to replicate this functionality on my web application by capturing user-inputted data in a dialog box. Can anyone advise if achieving similar results with string inputs from the dialogue box is feasible?
Please let me know if additional clarification is needed.
Thank you!
PS: I'm a beginner in JS programming