如何从python的webbrowser捕获HTTP错误

时间:2015-11-05 20:13:23

标签: python macos google-chrome python-webbrowser

我写了一个小的python脚本,以编程方式每隔六秒打开一个镀铬的URL。

#!/usr/bin/env python

import webbrowser
import time

f = open("data.txt", "r")
urls = f.readlines()

safari = webbrowser.get('open -a /Applications/Google\ Chrome.app %s')

for url in urls:
    safari.open(url.replace("\n", ""))
    print url
    time.sleep(6)

我想知道是否有办法将Chrome中的HTTP错误(即404)捕获回python。

1 个答案:

答案 0 :(得分:1)

我相信,使用webbrowser模块是不可能的。你应该使用像硒这样的东西。

from seleniumrequests import Firefox

webdriver = Firefox()
response = webdriver.request('GET', 'https://www.google.com/')
print(response)