从xCode和Android Studios尝试模拟器一段时间后,我终于开始使用appium运行真正的iOS和Android设备。
但我面临的问题是我不能在iOS设备(iPhone 5)上使用chrome作为浏览器来运行我正在尝试测试的基于Web的应用程序。
我将Chrome
用作browser
,将com.google.chrome.ios
用作bundleId
我所需的功能。
例如:
{
platformName: 'iOS',
platformVersion: '10.3',
browserName:'Chrome',
deviceName: 'my iPhone 5',
uuid: "<uuid>",
xcodeOrgId: '<Team ID>',
xcodeSigningId: 'iPhone Developer',
bundleId: 'com.google.chrome.ios'
}
我做了大量研究以找到有关此问题的任何信息,但没有成功。 如果有人知道任何文章或我的问题的答案,我会很感激。