TA的每日心情 | 擦汗 11 小时前 |
---|
签到天数: 527 天 连续签到: 4 天 [LV.9]测试副司令
|
1测试积点
问题:
求指点,脚本执行成功,但是却没注册成功
用robotium写了一个注册的脚本,脚本执行成功了,但是注册的页面却一直提示:正在
验证注册用户信息,请稍等,并且用注册的账号登录app,提示不能使用,说明注册脚本
执行时,没有注册成功;但是,我手工注册的时候,提交注册信息却可以成功,请教下,
这个是啥原因?
第二个:注册脚本在执行的时候,页面一直提示:正在验证注册用户信息,请稍等,我手
工点击这个页面,再手工点击确认提交按钮,却能注册成功,现在我是想写一个点击动
作,就是对“提示:正在验证注册信息,请稍等”的页面进行点击,但是用uiautomat
orviewer分析不出这个页面是个什么控件,还请指点下
注册的脚本是:
- <div><font face="微软雅黑" size="3">public void test_Watch_001(){</font></div><div><font face="微软雅黑" size="3">solo.sleep(Sleeptime1);</font></div><div><font face="微软雅黑" size="3">solo.clickOnButton("注 册");</font></div><div><font face="微软雅黑" size="3">solo.sleep(Sleeptime1);</font></div><div><font face="微软雅黑" size="3">solo.enterText(0,"test16");</font></div><div><font face="微软雅黑" size="3">solo.sleep(Sleeptime2);</font></div><div><font face="微软雅黑" size="3">solo.enterText(1,"123456");</font></div><div><font face="微软雅黑" size="3">solo.sleep(Sleeptime2);</font></div><div><font face="微软雅黑" size="3">solo.enterText(2,"123456");</font></div><div><font face="微软雅黑" size="3">solo.sleep(Sleeptime2);</font></div><div><font face="微软雅黑" size="3">solo.enterText(3,"1616");</font></div><div><font face="微软雅黑" size="3">solo.sleep(Sleeptime2);</font></div><div><font face="微软雅黑" size="3">solo.enterText(4,"test16");</font></div><div><font face="微软雅黑" size="3">solo.sleep(Sleeptime2);</font></div><div><font face="微软雅黑" size="3">solo.clickOnButton("确认提交");</font></div><div><font face="微软雅黑" size="3">solo.sleep(Sleeptime1);</font></div><div><font face="微软雅黑" size="3">solo.goBack();</font></div><div><font face="微软雅黑" size="3">}</font></div>
复制代码
|
|