Underson888
Underson888
The error information is as follows: Exception in thread Thread-2: Traceback (most recent call last): File "D:\allAi\environments\tiktok\lib\threading.py", line 980, in _bootstrap_inner self.run() File "D:\allAi\environments\tiktok\lib\threading.py", line 917, in run self._target(*self._args, **self._kwargs)...
> Could you share the appium log as well? (as GIST) Ok,bro. This is the link:https://gist.github.com/Underson888/8871bca07b3241d7aa6f810e9a7bc16c
> Did they work with a single thread? The port config itself looks working Yes,each device is controlled by a single thread,just like the code mentioned.
> Did they work with a single thread? The port config itself looks working thread1 = threading.Thread(target=run_test_on_device, args=(desired_caps1,)) thread2 = threading.Thread(target=run_test_on_device, args=(desired_caps2,)) thread1.start() thread2.start() thread1.join() thread2.join() Is it correct for...