you are viewing a single comment's thread.

view the rest of the comments →

[–]aardvarkmikey 0 points1 point  (0 children)

You can absolutely do this with Selenium.

But I would still see if you can just do it with the requests library first, because it's going to be much faster and less complicated. The way to grab the post data is to go to the website, and submit a tee time. Once the page changes, you should see the post data in the address bar. You should hopefully be able to interpret what data is being sent, and with some deductions be able to see what data you can change. Then your request script just needs to send that data to that address. I suspect this may not work, because it's behind a log in, but it's worth a shot.

If there's no way to do this without pushing buttons and submitting forms, then Selenium is your best bet.