1.安装selenium
安装命令:pip3 install selenium==2.53.6
如果之前已经安装过了,可以先卸载pip3 uninstall selenium
使用selenium2.53.6版本是因为-selenium2的版本会更加稳定(切记注意版本号,很多问题都是由于版本不兼容导致的哦
2.安装Firefox浏览器
selenium2.53.6只支持FireFox47一下的版本,我目前安装的是FireFox45.0
下载地址1:http://ftp.mozilla.org/pub/firefox/releases/
下载地址2:https://ftp.mozilla.org/pub/firefox/releases/45.0/mac/zh-CN/
下载地址3: http://pan.baidu.com/s/1dDAgCAd 密码: 1yja
3.运行代码
from seleniumimport webdriver
import os
import time
# print(os.environ)#打印环境的路径信息
driver= webdriver.Firefox()#启动浏览器
time.sleep(1)
driver.maximize_window()#浏览器最大化
driver.get('https://www.baidu.com/')#访问地址
time.sleep(1)
print(driver.page_source)#打印返回值
driver.close()#关闭浏览器
运行代码遇到的问题
selenium.common.exceptions.WebDriverException: Message: Can't load the profile. Profile Dir: /var/folders/s3/4zd7yy4965g9b7v5kkpjsdz00000gn/T/tmpzeqkdudk If you specified a log_file in the FirefoxBinary constructor, check it for details.
解决方案以及原因
selenium2.53.6与Firefox45.0的不匹配
重新下载安装:selenium2.53.1
重新运行代码,可正常使用了
附录:Firefox浏览器设置:选择附加组件,个人没有成功安装了,直接用Chrome去定位写代码问题也不大,大家可以参考
下载安装Firebug和Firepath两个组件
压缩包下载地址:https://pan.baidu.com/s/1rushghRy2uGs99-XFyxDNg,提取码:fkb4