How to switch from one app to another app at run time

前端 未结 4 1287
甜味超标
甜味超标 2021-02-03 10:46

Is there any possibility to switch from one application to another application at run time using Appium.

Thanks

4条回答
  •  抹茶落季
    2021-02-03 11:17

    You can use:

    driver.startActivity(settingsAppPackageName, settingsAppActivityName);
    

    to invoke another app withing the same code.

提交回复
热议问题