I am trying to run a script on Multiple devices in Andriod platform, but I am unable to run. I went through Github page for a solution and found the following link about Sup
The following code will help you.
//Running multiple emulators from single appium server
public class Test{
WebDriver driver = null;
int timeOut=180;
int port=-1;
Test(int port){
this.port=port;
}
public void testEmulator(int p) throws Exception {
DesiredCapabilities capabilities = new DesiredCapabilities();
capabilities.setCapability(CapabilityType.BROWSER_NAME, "Android");
capabilities.setCapability(CapabilityType.VERSION, "4.3");
capabilities.setCapability(CapabilityType.PLATFORM, "Windows");
capabilities.setCapability("udid","emulator-"+p);
capabilities.setCapability("app-package", "your.app.pkg");
capabilities.setCapability("app-activity",
"your.app.pkg.Activity");
driver = new RemoteWebDriver(new URL("http://127.0.0.1:"+this.port+"/wd/hub"),
capabilities);
driver.manage().timeouts().implicitlyWait(timeOut, TimeUnit.SECONDS);
Thread.sleep(50000);
}
public void tearDown() {
if (driver != null)
driver.quit();
}
public void runTest() {
try {
testEmulator(5554); // for emulator on port 5554
tearDown();
testEmulator(5556); // for emulator on port 5556
tearDown();
} catch (Exception e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
new Test(4723).runTest(); // appium server port 4723
}
}
To run appium script on multiple devices
Here I have create simple java thread based program
https://github.com/sameer49/Appium-Grid-For-Android
For multiple android devices start your appium server with parameters:
<device1_serial>
<device2_serial>
You can select any port, but make sure they are different in your code, where you are creating driver, provide server url:
server1_url = "http://127.0.0.1:4475/wd/hub"
server2_url = "http://127.0.0.1:4476/wd/hub"
Done.
For sequential or parallel execution on multiple android devices, we need to -
Check the below post, which uses Java Thread and Runnable interface for parallel execution - http://automationtestinghub.com/appium-parallel-execution/
If you are talking about the GUI, I guess your environment is Windows? Then you can use the following batch:
@ECHO OFF
cd "C:\Program Files (x86)\Appium\node_modules\appium"
node server.js --app "<path-to-your-project>\bin\<app-name>.apk" -p <port-to-listen-on> -dp <device-port-to-connect-to-device-on>
With this you should be able to start two different Appium servers and using them parallel.
For a full list of all available commands, type node server.js --help
.
If you installed Appium via npm, the path to server.js would be something like "C:\Users\\AppData\Roaming\npm\node_modules\appium" instead.