我有一个由cron每天运行的小脚本,并且在过去的3个月里一直在运行。
9月30日,它停止了以下错误:
文件“NumberChecker.py”,第32行,在start_server中 os.startfile(startfile [0]) AttributeError:'module'对象没有属性'startfile'
这是该位的代码:
def start_server(xml):
startfile = xml.xpath('/config/files/startfile/text()')
try:
driver = webdriver.Remote(desired_capabilities=webdriver.DesiredCapabilities.HTMLUNIT)
driver.get('http://www.google.com')
except:
print('no server')
server_status = 'down'
os.startfile(startfile[0])
while server_status == 'down':
try :
driver = webdriver.Remote(desired_capabilities=webdriver.DesiredCapabilities.HTMLUNIT)
driver.get('http://www.google.com')
server_status = 'running'
except :
pass
它只是通过请求谷歌来测试selenium服务器是否启动,如果没有调用启动它的bash脚本。
为什么os.startfile会突然停止工作?
我在命令行尝试了这个:
import os
os.startfile(home/adam/file/start_server.sh)
我得到了
文件“< stdin>”,第1行,in AttributeError:'module'对象没有属性'startfile'
我无法解决为什么它刚刚停止工作?
在虚拟环境中是python 3.3,os是ubuntu服务器12.04