Monitor network calls made to and from the app

I am trying to figure out if there is way to monitor any ongoing requests before moving to another screen or doing some actions on the phone.

This activity is part of the testing activities where we need to know how much time the app is taking to be in a idle state.

Please suggest how can I check if app is in idle state without any network calls.

Do you want to do this programmatically? Or just while debugging?

Are you primarily concerned with HTTP[S] requests? Or is your app doing other forms of networking?

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

I want to do this programmatically while testing. And only proceed to do any actions when there is no network calls.

Yes, primarily with HTTP[S] requests.

I want to do this programmatically while testing.

In that case your best option is likely to be to track your own network requests internally.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

Monitor network calls made to and from the app
 
 
Q