Hey! I’ve been trying to run two devices on one test using Qxygen for a while now and i can’t seem to make it work.
I want to run it on the same code, conceptually like:
const myFunction = async() => {
const deviceOne = mob;
const deviceTwo = mob;
await deviceOne.init(...);
await deviceTwo.init(...);
}
When i tried this logic Oxygen CLI said that mob is already initialized
is there anything else possible?