首页 > 编程 > Python > 正文

Python+Selenium自动化实现分页(pagination)处理

2020-02-23 04:30:05
字体:
来源:转载
供稿:网友

场景

对分页来说,我们最感兴趣的是下面几个信息

总共有多少页
当前是第几页
是否可以上一页和下一页

代码

下面代码演示如何获取分页总数及当前页数、跳转到指定页数

#coding:utf-8from selenium import webdriverimport timedriver = 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"))-2print "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()

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持武林站长站。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表