I see that xcode 9 beta supports launching sessions on multiple simulator simultaneously and appium 1.7.0 supports it.
Is there a ruby client for having distributed tests across many simulators in Appium? I am not finding much materials online that is supporting ruby tests.
My requirement is
- I run the first case across all the simulators in parallel and
- Distribute the rest of the test cases to run simultaneously across the connected simulators.
Do we have to manually give desired capabilities for each simulator? or use ideviceinstaller -i to get the list of simulators and have an .each loop for this in the desired capabilities?
Please help me with any documentation or approach for this.