Reputation: 232
How long does robotium wait for a new activity to show up? Is it possible to set the timeout manually for the Solo instance?
Upvotes: 3
Views: 1814
Reputation: 7062
If you not specify timeout manually, method solo.waitForActivity()
will have default timeout 10 seconds. Because Robotium is open source project you can look it yourself by opening source code / class Waiter.
Upvotes: 0