手游开发引擎和普通 app 测试还有有区别的,通常是无法获取到页面元素,控件的。
如果做手游测试的话,可以去了解下腾讯这款开源项目,里面提供了手游 ui 控件的查看器。
https://github.com/tencent/GAutomator
while True:
try :
self.assertTrue(self.driver.find_element_by_name(u'客户A'),msg=u'没找到客户')
public.get_name(u'客户A').click()
break
except:
str1=public.getPageSource()
public.swipe_up()
time.sleep(2)
str2=public.getPageSource()
#是否滑动到底部
if str1==str2:
break