Features

Handling permission pop-ups

While testing your mobile app, it may ask for specific permissions during the test. Various system dialogs or popups may appear, asking the user to grant access.
The mobile app might ask the user permission to access the contacts, notifications, media, ... on the device.

Below we'll go over the various techniques to handle these events during your mobile testing:

Allow or Deny all permissions

Appium allows you to automatically accept all permission and alert requests.

Allow or Deny all permissions on Android

You can use the autoGrantPermissions capability.

Appium will inspect the Android Manifest of the app, extract the required permissions and grant these.

caps['autoGrantPermissions'] = 'true'
caps.setCapability("autoGrantPermissions", "true");
desired_cap = {
  'autoGrantPermissions' = 'true',
}
var capabilities = {
    'autoGrantPermissions': 'true'
}
capability.AddAdditionalCapability("autoGrantPermissions", "true");

Allow or Deny all permissions on iOS

On iOS, Appium offers two capabilities which you can use: autoAcceptAlerts and autoDismissAlerts.

autoAcceptAlerts will automatically accept (grant) any alerts (including permission popups) that might appear during your test.
autoDismissAlerts will automatically dismiss (deny) any alerts (including permission popups) that might appear during your test.

caps['autoAcceptAlerts'] = 'true' # to accept all alerts
caps['autoDissmissAlerts'] = 'true' # to accept all alerts
caps.setCapability("autoAcceptAlerts", "true"); // to accept all alerts
caps.setCapability("autoDissmissAlerts", "true"); // to dismiss all alerts
desired_cap = {
  'autoAcceptAlerts': 'true', # to accept all alerts
}
desired_cap = {
  'autoDissmissAlerts': 'true' # to dismiss all alerts
}
var capabilities = {
    'autoAcceptAlerts': 'true' // to accept all alerts
}
var capabilities = {
    'autoDissmissAlerts': 'true' // to dismiss all alerts
}
capability.AddAdditionalCapability("autoAcceptAlerts", "true"); // to accept all alerts
capability.AddAdditionalCapability("autoDissmissAlerts", "true"); // to accept all alerts

Allow or Deny specific permissions

You can also choose to accept or deny alerts and popups during your test.
Your test will need to find the element of the alert or popup and perform a click action on that element.

# For Android
driver.find_element(:xpath, ".//android.widget.Button[@text='Allow']").click
# For iOS
driver.find_element(:id, "Allow").click
// For Android
driver.findElement(By.xpath(".//android.widget.Button[@text='Allow']")).click();
// For iOS
driver.findElement(By.id("Allow")).click();
# For Android
driver.find_element_by_xpath(".//android.widget.Button[@text='Allow']").click()
# For iOS
driver.find_element_by_id("Allow").click()
// For Android
var element = await driver.element("xpath", ".//android.widget.Button[@text='Allow']")
await element.click()
// For iOS
var element = await driver.element("id", "Allow")
await element.click()
// For Android
IWebElement ll =  driver.FindElement(By.XPath(".//android.widget.Button[@text='Allow']"));
ll.Click();
// For iOS
IWebElement ll =  driver.FindElement(By.Id("Allow"));
ll.Click();