标签: ios xcode ios-simulator ios-ui-automation xcuitest
我正在使用Xcode 11.3.1,并且可以在模拟器中找到快速操作。有没有一种方法可以使用XCUITest进行测试?我们如何启动应用程序并选择这些快速操作之一?
答案 0 :(得分:1)
该跳板的束ID是com.apple.springboard。您可以像与其他任何应用程序一样与它进行交互。
let springboard = XCUIApplication(bundleIdentifier: "com.apple.springboard")
,然后从那里去。要发现其功能,请进入调试会话并进行调试。