栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

硒:检索向下滚动时加载的数据

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

硒:检索向下滚动时加载的数据

尝试介于两者之间

wd = webdriver.Firefox()wd.implicitly_wait(3)def get_items(items):    print len(items)    wd.execute_script("window.scrollTo(0, document.body.scrollHeight);")    # len(items) and len(wd.find_elements-by...()) both always seem to return the same number    # if I were to start the loop with while True: it would work, but of course... never end    sleep(5) #seconds    while len(wd.find_elements_by_class_name('stream-item')) > len(items):        items = wd.find_elements_by_class_name('stream-item')        print items        wd.execute_script("window.scrollTo(0, document.body.scrollHeight);")    return itemsdef test():    get_page('http://twitter.com/')    get_items(wd.find_elements_by_class_name('stream-item'))

注意:硬睡眠只是为了证明它有效。请改用waits包来等待智能状态。



转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/406742.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号