ios:How to import all apllications from ios device

I want to open my company application, then later on open messaging app, from where i need to read the one time code i recieve.

How can i switch from one app to another? Launch app does not give me the activity URL for messaging app.

Record your session:

  1. Select your company app in the appium studio and record your steps.
  2. Then Save the test to an IDE.
  3. Then again select no application from the appium studio and record the messaging app.
  4. Now save this test to your IDE.
  5. You will have two driver instances, so rename the second driver and merge the before and after methods.
  6. Now use your first driver (application driver) for Company app steps and ‘No app’ driver for your messaging app.

Hope it helps.

Thanks. Let me try this…