第一次操作浏览器,遇到了这个问题,在网上搜索很久终于解决
本人使用MAC,Python IDE推荐使用PyCharm,真的好用,很多第三方可直接在里面搜索和下载使用(下载完了只能在PyCharm里用)
好像47版本后,使用selenium都会提示Message: 'geckodriver' executable needs to be in PATH,意思是需要第三方‘geckodriver’来驱动,下载地址https://github.com/mozilla/geckodriver/releases,注意版本
url = 'https://www.baidu.com'
drive = webdriver.Firefox(executable_path = 'geckodriver的存放目录')
drive.get(url=url)
sleep(10)
drive.quit()