Hello, I’m attempting to automate flutter using the appium flutter driver. I’m able to connect to real Android devices, but I was unable to do so with real iOS devices.
Environment:
Appium v2.0.0-beta.48
node v18.12.1
xcode 14
Details
const opts = {
port: 4723,
capabilities: {
‘platformName’: ‘iOS’,
‘appium:platformVersion’: ‘15.4.1’,
‘appium:deviceName’: ‘iPhone 6s Plus’,
‘appium:noReset’: true,
‘appium:automationName’: ‘Flutter’,
‘appium:bundleId’:‘com.example.hello_world.MainActivity’,
‘appium:retryBackoffTime’: 500
}
}