does anyone know what could be wrong with my flutter driver? I am not able to load my app on the Appium inspector itself so that i am able to locate elements or simply interact with the app?
After starting up the Appium session and adding some capabilities, this is what i am getting: The interactive mode app is not loaded into Appium inspector My capabilities are as follows:
{
"appium:deviceName": "Nexus 6 API 34",
"appium:automationName": "Flutter",
"appium:app": "Where/my/app/is/stored/on/my/local/machine",
"platformName": "Android"
}
Please see the logs bellow:
[logs image 1](https://i.sstatic.net/2yHqe.jpg)
[Logs imge 2](https://i.sstatic.net/48uAR.jpg)
[log image 4](https://i.sstatic.net/m8ro3.png)
if you specifically want to work with flutter native elements(Widgets), you should use the flutter inspector instead appium inspector, otherwise you need to use UIAutomator2 and native context
{
"appium:appPackage": "ua.test.app",
"platformName": "Android",
"appium:deviceName": "25877ece",
"appium:appActivity": "ua.test.app.MainActivity",
"appium:platformVersion": "10",
"appium:automationName": "UIAutomator2"
}