Skip to content
QiTASC.com / Troubleshooting /
Unresponsive Appium
/ .. /
Unresponsive Appium










Unresponsive Appium

Using Appium with an Android 7 distribution, Appium's state could become unresponsive. Setting the following capability in Appium's configuration solves this behavior:

1
2
3
4
5
6
7
8
9
Appium {
  apps = [
    {
      capabilities {
        automationName = "uiautomator2"
      }
    }
  ]
}