码迷,mamicode.com
首页 > 编程语言 > 详细

selenium测瀑布流UI页面的Python代码

时间:2017-06-01 10:38:40      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:rom   comm   lib   doc   UI   ons   bdr   页面   from   

from  selenium import webdriver

from selenium.webdriver.common.keys import Keys

from selenium.webdriver.common.action_chains import  ActionChains

import time

from selenium.common.exceptions import NoSuchElementException

 

driver = webdriver.Chrome()

driver.implicitly_wait(20)

driver.maximize_window()

driver.get("http://www.yibaolib.com/Login.aspx")

 

user = driver.find_element_by_css_selector(‘#ContentPlaceHolder1_txtPhone‘).send_keys(‘15755172398‘)

pwd = driver.find_element_by_css_selector(‘#ContentPlaceHolder1_txtPwd‘).send_keys(‘456789‘)

# p=driver.find_element_by_css_selector(‘#ContentPlaceHolder1_txtPwd‘)

 

driver.find_element_by_css_selector(‘#ContentPlaceHolder1_txtPwd‘).send_keys(Keys.ENTER)

 

time.sleep(10)

# js = "var q=document.body.scrollTop=10000"

# driver.execute_script(js)

# 为了快速滑动,先设置超时时间为1秒

driver.implicitly_wait(1)

 

# 不停的滑啊滑

while True:

    driver.execute_script("window.scrollTo(0,document.body.scrollHeight)")

    try:

        # 定位页面底部的一个标题

        driver.find_element_by_xpath(‘//*[@id="waterfall"]/div[2]/div[33]/div/div/a‘)

        # 如果没抛出异常就说明找到了底部标志,跳出循环

        break

    except NoSuchElementException as e:

        # 抛出异常说明没找到底部标志,继续向下滑动

        pass

 

# 将超时时间改回10秒

driver.implicitly_wait(10)

 

title=driver.find_elements_by_xpath(‘//*[@id="waterfall"]/div/div/div/div/a‘)

print(len(title))

for  i in title:

    print(i.text)

 

selenium测瀑布流UI页面的Python代码

标签:rom   comm   lib   doc   UI   ons   bdr   页面   from   

原文地址:http://www.cnblogs.com/cyjs1988/p/6927037.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!