I am trying to launch my app on multiple mobile devices (emulators) using Robot Framework with Appium.
I am using below keyword in different test cases.But still its launching app on one device only which comes first in the connected list :
${appium1}= Open Application
... http://localhost:4723/wd/hub
... platformName=${PLATFORM_NAME}
... platformVersion=${PLATFORM_VERSION}
... deviceName= emulator-5556
... appPackage=${appPackage}
... appActivity=${appActivity}
${appium2}= Open Application
... http://localhost:4725/wd/hub
... platformName=${PLATFORM_NAME}
... platformVersion=${PLATFORM_VERSION}
... deviceName=emulator-5554
... appPackage=${appPackage}
... appActivity=${appActivity}
Please help me on Multi device testing using Robot Framwork-Appium