python3.x + selenium 3.x 遇到的问题:Exception ignored in:

我解决了!!!
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.x + selenium 3.x 遇到的问题:Exception ignored in:_第1张图片

转载于:https://www.cnblogs.com/my-blogs-for-everone/p/5988996.html

你可能感兴趣的:(python3.x + selenium 3.x 遇到的问题:Exception ignored in:)