0

Ok,

I've spent a few hours trying to find an answer to this question and had no luck what so ever.

I am creating an appium automated test using xcode Version 9.3.1 I need to locate the .app file so I can add it to my desired capabilities and I cant find it in any folder.

Breaking it this down in the most basic fashion, how do I locate the .app file so I can add it to my ios appium automated testing?

Out of curiousity would I need to use something like homebrew to locate it?

Or can I find from a specific menu in xcode?

4

3 回答 3

1

Xcode ->首选项->位置

按下按钮在 Finder 中打开文件夹

按下按钮在Finder中打开文件夹

在这里你需要找到项目构建文件夹,打开它并搜索带有Debug-iphonesimulator名称的子文件夹,你应该在那里构建文件。

完整路径可能如下所示:

/Users/<user>/Library/Developer/Xcode/DerivedData/<Project name>/Build/Products/Debug-iphonesimulator

于 2018-05-16T15:35:45.910 回答
0

非常感谢您提供的所有帮助。我真的很感激。你们都是一群传奇人物。我能够解决这个问题,并且我希望帮助某人节省 3 天的麻烦。

查找 .**app 文件是一个隐藏文件 **

基本上有很多方法可以在这个版本的 Xcode 中找到 .app 文件。

  1. 您可以使用 Mac 上的搜索栏找到 .app。此外,您可以找到 .app 将在此目录中

users/(YourMacAccount)/Library/Developer/Xcode/DerivedData/UICatalog-.../Build/Products/Debug-iphonesimulator/(appname).app

要显示隐藏文件,请键入cmd>shift>。

如果您仍然找不到它(这就是发生在我身上的事情)。然后:

  1. 单击 xcode 中的“在查找器中显示”图标(形状像文件的图标)

这是你可以在 xcode 9.3.1 中找到它的地方

于 2018-05-20T18:56:16.717 回答
0

默认情况下,Xcode 将所有项目的派生数据存储在主目录下的单个共享文件夹中,位置如下:

~/库/开发者/Xcode/DerivedData

在 Xcode 6 中,您可以从 Preferences -> Locations Tab 访问或更改派生数据位置

但你可以在 xcode 中设置:

文件-> 项目设置

找到“派生数据:”

这里是如何设置https://www.youtube.com/watch?v=MVVRsR9XenQ

于 2018-05-16T14:10:26.437 回答