python可以调用selenium组件,打开firefox浏览器,对指定的网页进行操作。配置步骤如下:
1、python安装和环境配置教程
参考https://jingyan.baidu.com/article/c45ad29c05c208051653e270.html
2、python安装selenium组件
除了python 自带的标准库,其他开发者写了一些自己的模块,进一步扩展了python的功能。安装第三方模块的主要方法是使用python的pip 工具。
windows环境 命令行执行:
pip install selenium
2、安装成功后,在python idle窗口中执行‘browser = webdriver.Firefox()’时会报错:
‘selenium.common.exceptions.WebDriverException: Message: 'geckodriver' executable needs to be in PATH.’即表示找不到geckodriver路径
方法一:可以卸载现有的selenium,安装指定的2.X版本的selenium,这个办法我没有试
方法二:下载geckodriver.exe,并放入指定路径