python3+selenium3遇到的问题:Exception ignored in: <bound method Service.__del__ of <selenium.webdri

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3+selenium3遇到的问题:Exception ignored in: <bound method Service.__del__ of <selenium.webdri相关的知识,希望对你有一定的参考价值。

我解决了!!!
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.webdri的主要内容,如果未能解决你的问题,请参考以下文章

关于Selenium3+python3.6自动化测试中iframe切换

selenium3+python3环境搭建

selenium3+python3

python3.6.1+selenium3.0环境安装问题及解决方法

python3+selenium3之 解决:'chromedriver' executable needs to be in PATH问题

Python3+Selenium3自动化测试学习之路