xueboy118 发表于 2017-5-17 10:21:28

【求助】python+selenium获取分页列表元素失败

操作:python+selenium,在查询页面,按照条件查询,查询结果有多页,当获取第一页符合条件的列表元素后,点击【下一页】,此时页面显示查询结果的第二页,重新获取列表中的符合条件的元素,并添加到新的列表中
问题描述:当页面切换到第二页时,脚本不会重新获取页面显示的元素,而是将第一页上的符合条件的元素重新添加一遍,即第二页上符合条件的元素没有被添加。求解

脚本:
txtv=[]
lists=self.dr.find_elements_by_css_selector("tbody>tr")
routnum=0
#获得列表总页数
page1=self.dr.find_element_by_xpath("//*[@id='laypage_3']/div/label").text
p1=1
while p1<=int(page1):
        print "===================第%s次循环"%str(p1)
        if p1>1:
                time.sleep(3)
                print u"分页大于1页时,页面重新取值!!!!"
                lists=[]
                lists=self.dr.find_elements_by_xpath("//*[@id='tab_bd2']/div/table/tbody/tr")

        for txt1 in lists:
                #获得状态信息
                zt=txt1.find_element_by_xpath(".//td").text
                if zt==u"不正常":
                        #获得mac信息
                        mac=txt1.find_element_by_xpath(".//td").text
                        #获得商户名称
                        sh=txt1.find_element_by_xpath(".//td").text
                        #获得商户所在地区
                        dq=txt1.find_element_by_xpath(".//td").text
                        #获得列表记录编号
                        bh=txt1.find_element_by_xpath(".//td").text
                        #将获取的列表元素添加到列表中
                        txtv.append()
                        routnum+=1
        p1+=1
        if p1<>int(page1):
                self.dr.find_element_by_xpath("//*[@id='page2']/div/div/a").click()

xueboy118 发表于 2017-5-17 11:44:40

补充一下,系统属于左右框架结构,查询操作在右边的框架上,执行查询,点击下一页后,地址栏上的url不会发生改变

xueboy118 发表于 2017-5-18 11:15:19

没人知道碰到过这样的状况么?
页: [1]
查看完整版本: 【求助】python+selenium获取分页列表元素失败