Python+Selenium 自動化實現實例-處理分頁(pagination)

 

場景

 

對分頁來講,咱們最感興趣的是下面幾個信息html

  • 總共有多少頁
  • 當前是第幾頁
  • 是否能夠上一頁和下一頁

代碼

下面代碼演示如何獲取分頁總數及當前頁數、跳轉到指定頁數web


#coding:utf-8segmentfault

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()瀏覽器

 

##等待3秒,退出瀏覽器ide

time.sleep(3)post

driver.quit()ui

 

 

原文文章地址:http://www.cnblogs.com/forcepush/p/6650123.htmlhtm

相關文章
相關標籤/搜索