Rahul Mendiratta
Rahul Mendiratta

Reputation: 625

How to run Robotium Automation Test Cases in Multiple Devices

I have my test scripts ready which work in single device.. Now i have to run my testcases in multiple device.. Is there any solution for that.. or i have to use any build tool for that.

Upvotes: 0

Views: 682

Answers (1)

MM.
MM.

Reputation: 4274

You can connect the devices you want to test to the adb server, then in your test scripts target each device:

adb -s <devices ip>:<port>

You could be smart about how you cycle through the connected devices, by making it generic in your script.

Upvotes: 1

Related Questions