flutter_gherkin
flutter_gherkin copied to clipboard
Run flutter_gherkin in multiple devices not working for me
i have multiple devices connected to my machine both physical devices and emulator/simulator. i already enable "..targetDeviceId = 'all'", it's install on those device, but no action on those device in parallel.
my question is
- is there any way to run test in parallel for individual device
- what is the maximum connection that i can run with this
Hi, unfortunately at the moment you can only run against one device at a time. I do have plans to be able to run against more than one device at a time either randomly splitting the tests or running the tests on all devices. It is quite a large breaking change as the reporters would also need to be updated. It would certainly speed up long running test suites if this is implemented. However, I need to find the time to do it. Hopefully I can get it done one weekend this month.
In answer to your other question about running parallel on a single device this could never be achieved for the same flutter application as you cannot have multiple instances of the same application bundle running on a mobile device.
On Fri, Aug 14, 2020, 14:39 Krisada Vivek [email protected] wrote:
i have multiple devices connected to my machine both physical devices and emulator/simulator. i already enable "..targetDeviceId = 'all'", it's install on those device, but no action on those device in parallel.
my question is
- is there any way to run test in parallel for individual device
- what is the maximum connection that i can run with this
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/jonsamwell/flutter_gherkin/issues/80, or unsubscribe https://github.com/notifications/unsubscribe-auth/AA4F7IPHWR6CG75LUXJTIALSAS5WZANCNFSM4P7DSOYQ .
Hi @jonsamwell I have multiple flutter applications wherein I need to assert something on the other application and vice versa. For example.. I updated a text field in the application A, and I need to assert that it is reflected in the application B.
is this possible at the moment using flutter gherkin? Thank you so much