网页测试每天测试

时间:2017-04-18 09:09:01

标签: python testing webpagetest

我需要一个代码,每天使用webpagetest.org自动测试我的网址

因为我是python的新手,我真的不知道如何编写这样的代码。

我希望有人可以帮助我。

1 个答案:

答案 0 :(得分:1)

不要真正了解你所要求的内容,但你可以编写一个始终运行的脚本,或者在启动时运行并测试URL。

例如,一个脚本在后台持续运行并在23小时59分钟内休眠。示例代码:

import requests, time
from urllib.request import urlopen

def main():
    while(True):
        print("Good Morning")
        try:
            html_doc = urlopen("https://www.google.co.uk")
            print("Connection Established.")
        except:         
            raise ConnectionError("No connection can be made to the url")
        time.sleep(86400)

if __name__ == '__main__':
    main()

每天一次,检查给定的URL以查看它是否可以连接并显示结果。

但是我不确定这是你想要的,因为这个问题非常不清楚,我建议你去思考一下你想要的是什么。