python中使用apscheduler二步简单完成定时任务设置,用于自动化任务的创建,无人值守后台任务创建

一、apscheduler的安装

  1. 首先需要安装pip
  2. 打开CMD输入pip install apscheduler 安装apscheduler模块
  3. 安装过程如下图
    python中使用apscheduler二步简单完成定时任务设置,用于自动化任务的创建,无人值守后台任务创建_第1张图片

二、导入apscheduler包,设置参数与需要执行的脚本

#coding=utf-8

import sys,os
import random
import time
from datetime import datetime
from config import globaVar
from pages import studyPage

from apscheduler.schedulers.blocking import BlockingScheduler

selenium = studyPage.Driver()
selenium.clearCache(‘1’)

def tick ():
print(‘Tick! The time is :%s’ % datetime.now())
os.system(“python D:\UItestframework\testcase\dd.py”)

if name == ‘main’:
scheduler = BlockingScheduler()
scheduler.add_job(tick,‘cron’, hour=15, minute=54)
print(‘Press Ctrl + {0} to exit’.format(‘Break’ if os.name == ‘nt’ else ‘c’))

try:
    scheduler.start()
except (KeyboardInterrupt, SystemExit):
    print('异常退出……')

你可能感兴趣的:(自动化,selenium)