Selenium的使用
Posted guguobao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Selenium的使用相关的知识,希望对你有一定的参考价值。
selenium现在最新的版本为3.0.1,以此为标准进行讲解。selenium官方地址为https://www.seleniumhq.org/
pip install selenium==3.0.1
调用浏览器必须下载一个类似补丁的文件,比如Firefox的为geckodriver,详细官网有:[https://www.seleniumhq.org/download/],根据自己操作系统,下载指定的驱动文件。
接着配置环境变量,在shell中执行export PATH = $PATH:/home/....../geckodriver.exe(在window我测试不能通过path和绝对路经来引用,只能通过相对路径,),代码如下:
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import time
driver = webdriver.Firefox(executable_path=‘..geckodriver.exe‘)
driver.get("http://www.baidu.com")
assert u‘百度‘ in driver.title
elem = driver.find_element_by_name("wd")
elem.clear()
elem.send_keys(u"网络爬虫")
elem.send_keys(Keys.RETURN)
time.sleep(3)
assert u‘网络爬虫‘ not in driver.page_source
driver.close()
运行成功会自动调用Firefox访问百度,并且需要selenium 版本达到3.7.0以上,不然调用出Firefox,但访问百度出错,升版本‘pip install -U selenium‘
元素选取
- 要想对页面进行操作,首先做的是选中页面元素,方法如下表
以上是关于Selenium的使用的主要内容,如果未能解决你的问题,请参考以下文章
Selenium JavascriptExecutor 详解
使用 Java 的 Selenium WebDriver (Selenium 2) 中 selenium.refresh() 的等效代码