I have wrote a MonkeyRunner(Jython) script and I want running this script in several devices at the same time, please help me how to do it, thanks a lot!
I have wrote a MonkeyRunner(Jython) script and I want running this script in several
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Instead of using
device = MonkeyRunner.waitForConnection()to connect to devices usedevice = MonkeyRunner.waitForConnection(deviceId=DEVICE_ID)where DEVICE_ID is the device id (as seen by adb) of the device that you are trying to connect to.