I have .py selenium scripts, I want to schedule the scrips to run daily at specific time.How can i do that ? windows platform
Asked
Active
Viewed 2,314 times
0
-
2On linux, you can read about **crontab** – ksai Aug 03 '17 at 10:55
-
There are many third party applications on windows too – Ofer Sadan Aug 03 '17 at 10:57
-
something like this? http://apscheduler.readthedocs.io/en/latest/ – oxrock Aug 03 '17 at 11:00
-
What operating system will be used to run the Python script? – Aug 03 '17 at 13:56
-
Possible duplicate of [Python script to do something at the same time every day](https://stackoverflow.com/questions/15088037/python-script-to-do-something-at-the-same-time-every-day) – JeffC Aug 03 '17 at 14:48
-
I am using Windows Platform – raju Aug 07 '17 at 10:12
2 Answers
0
Why not use a CI mechanism like Jenkins
or Travis CI
? These CI tools will give you a perfect mechanism of running your tests, specifically on a specific time or minute of day.
This post talks about scheduling in detail - Jenkins Scheduling.
Once you've scheduled your tests, you can check them manually or just configure them to send you emails once the build is run for the day.

demouser123
- 4,108
- 9
- 50
- 82