Xcode的bundleID是什么?

iqih9akk  于 2023-06-07  发布在  其他
关注(0)|答案(1)|浏览(157)

我想通过Appium运行Xcode,我需要Xcode bundeId(比如com.apple.TextEdit)。我使用Appium2和驱动程序'Mac2'。
产品特点:
“platformName”:“Mac”,“appium:automationName”:“Mac2”,“appium:bundleId”:“com.apple.Xcode”
当我尝试开始我的测试时,我收到错误:
Failed to create session. An unknown server-side error occurred while processing the command. Original error: The app representing com.apple.Xcode could not be found.
Xcode的bundleId是什么?
谢谢你的帮助。

dgenwo3n

dgenwo3n1#

Xcode的包标识符是com.apple.dt.Xcode
你可以这样找到它(在终端运行)

defaults read /Applications/Xcode.app/Contents/Info CFBundleIdentifier

相关问题