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をクリックします。
あなたはこのコードをうまく使うことができます
solo.clickOnButton(0);
solo.sleep(20000); //20秒
一定時間待つことが目的の場合は、solo.sleep(20000)を使用してください。先に進む前に条件を待ちたい場合は、waitForメソッドを使用できます。