0

I have .py selenium scripts, I want to schedule the scrips to run daily at specific time.How can i do that ? windows platform

raju
  • 287
  • 3
  • 5

2 Answers2

0

I suggest you see something like APScheduler

Michail N
  • 3,647
  • 2
  • 32
  • 51
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