How to automate multiple apps in one session using appium in android say want to automate one calculator app followed by a settings app
相关问题
- Appium & Webdriver (webdriverjs) - cannot execute
- How to get app information like app version, devic
- How to skip Chrome Welcome screen, every time I ru
- Is it possible to automate an app downloaded from
- .bin/authorize-ios not found when installing appiu
相关文章
- appiumUI自动化send_keys()或者set_value()输入字符不识别,提示Did y
- Appium: “An element could not be located on the pa
- How to Perform Scroll up and Down in Android For L
- An unknown server-side error occurred while proces
- Using selenium and Appium is it possible to change
- Can the time out issue be the consequence of brows
- Can you use Protractor and Appium together to test
- I can't make swipe gesture work for me in Appi
If you are talking about automating multiple apps at the same time using the same session then that is not possible since one session only can automate one app.
However, if you are talking about automating multiple apps in succession, then that is indeed possible. For example, if you have a class or project with many tests, then just run all tests in that project and as long as you have the following code in your class your Appium session should work fine after each test:
This method tears down the session after each test so that when the next test is going to execute it can properly re-setup the session again for the next test (whose Desired capabilities may specify a different app).
Refer the answer in the below link.
Automating two apps in one session in appium