Reputation: 81
I'm a beginner in mobile iOS testing and I'm trying to write some tests, for example:
Click "Install" on intallation popup --> Check if app is installed on the device
But I can't find any tools that make possible to execute such test. So far I've been using Appium, but it requires app or bundleId to run tests. Is there any way to automate popups/browsing the device?
Upvotes: 0
Views: 97
Reputation: 753
You can work with popups as simple IOS elements.
Or you can force appium to auto enable (or disable) any popup by adding appropriate capability (“autoAcceptAlerts”,true);
Upvotes: 1