Hi Team,
I'm working on an android mobile application and i want to do parallel testing on different android devices to see how the application behaves when test cases are parallel y executed, how can i achieve this?
Thank you.
Parallel testing on different android devices.
- Support Team
- Site Admin
- Posts: 12167
- Joined: Fri Jul 07, 2006 4:30 pm
- Location: Graz, Austria
Re: Parallel testing on different android devices.
If you need device A to wait for something completed on device B, then this all needs to be performed within a single Ranorex test. You can switch between which endpoint (device) each action is performed on in Ranorex via the RxPath or by switching the endpoint during runtime (Host.MakeCurrentHost).
If you want the same test to run on more than one device at the same time, but the timings of actions do not need to be in exact sync, then run the same test twice but with different /ep:DeviceName arguments. This can be implemented in a batch for easier simultaneous launching (example below).
I hope this helps!
Regards,
Ned
If you want the same test to run on more than one device at the same time, but the timings of actions do not need to be in exact sync, then run the same test twice but with different /ep:DeviceName arguments. This can be implemented in a batch for easier simultaneous launching (example below).
Code: Select all
Start MyTest.exe /ep:DeviceA
Start MyTest.exe /ep:DeviceB
Regards,
Ned