This is my first time posting here. I greatly appreciate any and all guidance on this subject.
I'm trying to make a program that automatically fills in web forms and submits the data, returning the resulting page to the program so it can continue to 'browse' the page, allowing it to recursively submit even more data.
The main problems I'm having are:
- The 'submit' button is coded in Javascript, so I don't know where the form data goes when making the page request.
- I want to fill in the forms using data from an Excel table, so I need to be able to access data from outside the page.
- I need to be able to navigate the resulting page to continue to submit more data.
More specifically, I'm trying to first login to the Practice Mate website, navigate to 'Manage Patients', hit 'Add Patients', and fill in the proper forms and submit.
I'm filling in the forms from an Excel table thousands of rows long.
Sorry I can't be more clear on this without providing a username and password.
What I've been trying to do is use Javascript to make page requests from a page that retrieves information from the Excel document using PHP. I still can't seem to get anything to work with this method though.
I apologize for being a relative novice at this. Thanks in advance.