I am currently working on a project in which the values have to be parsed automatically every 5 minutes.
I'm done with the project to parse values once. Using Python-Selenium.
Can someone help?
I am currently working on a project in which the values have to be parsed automatically every 5 minutes.
I'm done with the project to parse values once. Using Python-Selenium.
Can someone help?
You can use the windows equivalent to a cron job, it is a scheduled task.
You will run your selenium program on a schedule.
See the Microsoft documentation on Schtasks.
You can read more about scheduling-a-python-script
See the answer of @steenhulthin for more explanation.