python3+selenium访问网页

2023-01-31 05:01:46 网页 访问 python3

selenium的安装

直接通过pip install selenium就可以安装了,非常简单。

使用Firefox时

报错:selenium.common.exceptions.WEBDriverException: Message: 'geckodriver' executable needs to be in PATH.
说明没有安装Firefox的驱动。

下载地址

https://GitHub.com/mozilla/geckodriver/releases
下载适合自己的包。

使用Chrome时

报错:selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH.
说明没有安装Chrome的驱动。

下载地址

Http://chromedriver.storage.Googleapis.com/index.html
下载是自己的包。

其他

IE浏览器:http://selenium-release.storage.googleapis.com/index.html
Edge浏览器:http://go.microsoft.com/fwlink/?LinkId=619687

驱动的存放位置

windows下,需要将下载的包解压后,放到python的根目录下,指定目录应该也是可以的,毕竟linux都可以呢。
在Linux下,我就是放到了与脚本同路径下,然后在程序里写的全路径。

相关文章