Robotium 测试每次点击之间的等待时间

发布于 2024-12-01 19:12:57 字数 90 浏览 2 评论 0原文

在robotium测试中,是否可以设置点击之间的等待时间?例如,我有 2 个按钮(A 和 B)。我希望 Robotium 单击按钮 A,然后 20 秒后单击按钮 B。

in robotium testing, is it possible to set a wait time between clicks? For example, I have 2 buttons(A & B). I want robotium to click on button A and then 20 seconds later click on button B.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

飞烟轻若梦 2024-12-08 19:12:57

你可以使用这段代码,它工作正常。solo.clickOnButton

(0);

独奏.睡眠(20000); // 20 秒

solo.clickOnButton(0);

u can use this code its working fine

solo.clickOnButton(0);

solo.sleep(20000); // 20 seconds

solo.clickOnButton(0);

不念旧人 2024-12-08 19:12:57

如果目的是等待固定的时间,则使用solo.sleep(20000)。如果您想在继续之前等待某个条件,可以使用 waitFor 方法。

If the purpose is to wait for a fixed amount of time then use solo.sleep(20000). If you want to wait for a condition before moving on you can use the waitFor methods.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文