Automating 3rd party app without access to source code

Apple Recommended

Replies

Anyone?

I am also having the same requirement., atmost if you don't have a Blackbox solution with XCUTtest then ., can go for Appium or Airtest
Maybe there is way to achieve it if you know the 3rd party apps' bundle identifiers.

The XCUIApplication provides a method that Creates a proxy for an application for the specified bundle identifier. -> see in doc

So what you can do is to create a mock app target, and then create a UI Test Target for it using XCUITest. Then in the test cases, you can init XCUIApplication instances with the above mentioned methods to do your testings.

Just my two cents.