码迷,mamicode.com
首页 > 移动开发 > 详细

Appium滑动直到页面底部

时间:2017-03-13 13:34:40      阅读:383      评论:0      收藏:0      [点我收藏+]

标签:android   app   数据   加载   get   and   src   ddr   com   

直接上代码

boolean isSwipe = true;
String endString = "已加载全部数据";
String endString2 = "没有更多的数据";
// 滑动屏幕直到页面底部
while (isSwipe) {
swipeToUp(androidDriver,200,1);//向上滑动屏幕
String temp =androidDriver.getPageSource();
if(temp.contains(endString) || temp.contains(endString2) )
isSwipe = false;
}

效果如下:

技术分享

 



Appium滑动直到页面底部

标签:android   app   数据   加载   get   and   src   ddr   com   

原文地址:http://www.cnblogs.com/Lihao2013/p/6541984.html

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