gpt4 book ai didi

ios - Appium 在 iPhone 模拟器上启动失败,在设备上成功

转载 作者:行者123 更新时间:2023-11-28 20:47:49 29 4
gpt4 key购买 nike

  • Appium v​​1.15.1
  • Mac 10.14.6
  • Xcode 11.2.1
  • Python 测试文件。

我可以在 iPhone 设备上成功运行测试,但不能在 iPhone 模拟器上运行。

错误:

[debug] [WD Proxy] Matched '/status' to command name 'getStatus'
[debug] [WD Proxy] Proxying [GET /status] to [GET http://localhost:8100/status] with no body
[HTTP] --> GET /status
[HTTP] {}
[debug] [HTTP] No route found. Setting content type to 'text/plain'
[HTTP] <-- GET /status 404 1 ms - 49
[HTTP]
[WD Proxy] Got an unexpected response with status 404: The URL '/status' did not map to a valid resource

这是 Appium 服务器的详细信息:

Welcome to Appium v1.15.1
[Appium] Non-default server args:
[Appium] address: 127.0.0.1
[Appium] port: 8100
[Appium] Appium REST http interface listener started on 127.0.0.1:8100

功能(Python):

def setUp(self):

app = ('/Users/...app')
self.driver = webdriver.Remote(
command_executor='http://127.0.0.1:8100/wd/hub',
desired_capabilities={
'app': app,
'platformName': 'iOS',
'platformVersion': '13.1',
'deviceName': 'iPhone Simulator',
"automationName": "XCUITest",
"xcodeOrgId": "XXXXXXXX",
"xcodeSigningId": "iPhone Developer"
}
)

有什么建议吗?

最佳答案

尝试使用以下功能:

desired_capabilities={
'app': app,
'platformName': 'iOS',
'platformVersion': '13.1',
'deviceName': 'iPhone Simulator',
'udid': 'unique id of simulator',
"automationName": "XCUITest"
}

udid可以在Simulator>Hardware>Device>Manage Device中找到,选择设备然后就可以看到Identifier。

端口需要是4723。

关于ios - Appium 在 iPhone 模拟器上启动失败,在设备上成功,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59266871/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com