Python+Selenium 自动化实现实例-处理分页(pagination)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python+Selenium 自动化实现实例-处理分页(pagination)相关的知识,希望对你有一定的参考价值。
场景
对分页来说,我们最感兴趣的是下面几个信息
- 总共有多少页
- 当前是第几页
- 是否可以上一页和下一页
代码
下面代码演示如何获取分页总数及当前页数、跳转到指定页数
#coding:utf-8
from selenium import webdriver
import time
driver = webdriver.Chrome()
driver.get("https://segmentfault.com/news")
# 获得所有分页的数量
# -2是因为要去掉上一个和下一个
total_pages = len(driver.find_element_by_class_name("pagination").find_elements_by_tag_name("li"))-2
print "total_pages is %s" %(total_pages)
# 获取当前页面是第几页
current_page = driver.find_element_by_class_name(‘pagination‘).find_element_by_class_name(‘active‘)
print "current page is %s" %(current_page.text)
#跳转到第二页
next_page = driver.find_element_by_class_name("pagination").find_element_by_link_text("2")
next_page.click()
以上是关于Python+Selenium 自动化实现实例-处理分页(pagination)的主要内容,如果未能解决你的问题,请参考以下文章
Python+Selenium 自动化实现实例-获取页面元素信息(百度首页)
Python+Selenium 自动化实现实例-处理分页(pagination)
Python+Selenium 自动化实现实例-打开浏览器模拟进行搜索数据并验证