首页 > 编程语言 > 详细

python3+selenium3遇到的问题:Exception ignored in: <bound method Service.__del__ of <selenium.webdriver.firefox.service.Service object at 0x0045E450>>

时间:2016-10-23 09:40:40      阅读:762      评论:0      收藏:0      [点我收藏+]
我解决了!!!
from selenium import webdriver
import time
dr = webdriver.Firefox(executable_path = ‘/Users/jinwenxin/desktop/pythonPractice/geckodriver‘)
time.sleep(5)
print ‘Browser will close.‘
dr.quit()
 
也就是往 driver=webdriver.Firefox()里添加下载的新的引擎地址executable_path = ‘C:\Program Files\Mozilla Firefox\geckodriver.exe‘
即: driver=webdriver.Firefox(executable_path = ‘C:\Program Files\Mozilla Firefox\geckodriver.exe‘)
这样就不会报错
如下图:
技术分享

python3+selenium3遇到的问题:Exception ignored in: <bound method Service.__del__ of <selenium.webdriver.firefox.service.Service object at 0x0045E450>>

原文:http://www.cnblogs.com/my-blogs-for-everone/p/5988996.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!