Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在robotium测试中,是否可以设置点击之间的等待时间?例如,我有 2 个按钮(A 和 B)。我想让robotium点击按钮A,然后20秒后点击按钮B。
你可以使用这个代码它工作正常
独奏.clickOnButton(0);
独奏.睡眠(20000);// 20 秒
如果目的是等待固定的时间,则使用 solo.sleep(20000)。如果你想在继续之前等待一个条件,你可以使用 waitFor 方法。