0

I am looking for resources or guide so that I could build a Python code to fill my ~2k online forms automatically. Sorry I dont have any script to share as many resources in which python code is written to go to form URL and fill it. Since in my case it is a pop up form it doesnt really have a real URL.

Please be kind, I am new to Python.

Is there a way to do something to imitate clicks on browser window and fill in new values in the form ?

Ezio
  • 376
  • 5
  • 21
  • You should use [selenium](https://www.seleniumhq.org/). This [SO post](https://stackoverflow.com/questions/17676036/python-webdriver-to-handle-pop-up-browser-windows-which-is-not-an-alert) might also get you in the right direction. – Scratch'N'Purr Jul 24 '18 at 11:07

1 Answers1

0

You can imitate clicks in the browser using selenium https://realpython.com/modern-web-automation-with-python-and-selenium/. There are plenty of tutorials how to do that.

Other tools would be:

Adelina
  • 10,915
  • 1
  • 38
  • 46