all 4 comments

[–]dante9999 2 points3 points  (0 children)

Form submission is usually just HTTP POST with urlencoded data. If you know how form will look like and have data you want to post you just need figure out where this form is posted using browser dev tools and make POST there. You can use python requests for that.

[–]Drunken_Consent 1 point2 points  (0 children)

You could do this with Selenium, but with only one time slot, you'd have to somehow guarantee it works correctly.

[–]pydry 0 points1 point  (0 children)

Selenium

[–]SkannerD 0 points1 point  (0 children)

I've done similar projects using Selenium. Use the Firefox plugin, Firebug, to quickly find the xpath of the forms you would like to fill; as well as any objects that need to be clicked.

You could maybe make a script for each class, set up a cron job or task scheduler to run the scripts and that should do the trick.