搭建Selenium环境

1.下载并安装Python

此学习笔记使用Python语言进行开发,所以我已经安装了Python环境,我的Python版本为3.5.2:

搭建Selenium环境

2.安装selenium

因为我使用的Python3版本,在该版本中已经包含了pip,使用pip安装selenium,因为我本机已经安装了selenium,因此会出现如下提示:

搭建Selenium环境

3.安装selenium开发环境:

本学习笔记我使用PyCharm工具进行学习:

搭建Selenium环境

4.编写selenium程序

使用selenium编写访问http://www.baidu.com的程序:

 # -*- coding:utf- -*-

 from selenium import webdriver

 driver = webdriver.Firefox()
driver.get("http://www.baidu.com")

执行程序:

 selenium.common.exceptions.WebDriverException: Message: 'geckodriver' executable needs to be in PATH.

报错了,此时我们需要下载Firefox浏览器的geckodriver.exe驱动,然后放到Python的安装目录,我的安装目录为:D:\Python35,然后再次执行程序。

搭建Selenium环境

可以看到,可以正确使用Firefox访问百度。

上一篇:Linux中ls命令详解


下一篇:Angular(01)-- 架构概览