无法在 iOS 设备上为 Xamarin 应用程序运行 Calabash 测试

Posted

技术标签:

【中文标题】无法在 iOS 设备上为 Xamarin 应用程序运行 Calabash 测试【英文标题】:Unable to run Calabash tests on iOS device for Xamarin app 【发布时间】:2014-11-07 12:27:53 【问题描述】:

我们无法让 Calabash 测试在部署到真实 iPhone 的 Xamarin 应用程序上运行。我们已尝试从以下位置下载示例应用程序:

http://developer.xamarin.com/guides/testcloud/calabash/introduction-to-calabash/

它在部署到模拟器时有效,但在尝试真实设备时无效。我们可以在设备上安装和运行,只是不能让它与 Calabash 一起工作。

我们尝试运行它的命令是:

APP_BUNDLE_PATH=~/Path/to/CreditCardValidation-Calabash/CreditCardValidation.ios/bin/iPhone/Debug/CreditCardValidationiOS-1.0.ipa DEBUG=1 BUNDLE_ID=com.xamarin.calabash.example.creditcardvalidation DEVICE_TARGET=uuid-of-device DEVICE_ENDPOINT=http://ip.of.phone:37265 RESET_BETWEEN_SCENARIOS=1 cucumber

上面的输出是:

Using the iOS profile...

Feature: Navigation feature


  @ios_only

  Scenario: A user can navigate between each journey stage # features/navigation.feature:4


INFO: Using uia strategy: 'preferences'

Preparation took 0.087536 seconds



                        :app => "<snip>",

                       :args => [],

    :bundle_dir_or_bundle_id => "<snip>",

                  :bundle_id => "<snip>",

                     :device => "<snip>",

              :device_target => "<device-uuid>",

              :launch_method => :instruments,

             :launch_retries => 5,

                   :log_file => "/var/folders/w1/55hzwq792vqdrv8bgw69yvy40000gp/T/run_loop20141107-1711-1whcn00/run_loop.out",

                  :no_launch => false,

                    :no_stop => false,

                      :reset => true,

                :results_dir => "/var/folders/w1/55hzwq792vqdrv8bgw69yvy40000gp/T/run_loop20141107-1711-1whcn00",

          :results_dir_trace => "/var/folders/w1/55hzwq792vqdrv8bgw69yvy40000gp/T/run_loop20141107-1711-1whcn00/trace",

                     :script => "/var/folders/w1/55hzwq792vqdrv8bgw69yvy40000gp/T/run_loop20141107-1711-1whcn00/_run_loop.js",

                :sdk_version => nil,

                       :udid => "<device-uuid>",

               :uia_strategy => :preferences,

                      :xcode => "6.0.1",

                 :xcode_path => "/Applications/Xcode.app/Contents/Developer"




### Starting on <device-uuid> App: <snip> ###

2014-11-07 11:21:38 +0000 xcrun instruments -w "<device-uuid>" -D "/var/folders/w1/55hzwq792vqdrv8bgw69yvy40000gp/T/run_loop20141107-1711-1whcn00/trace" -t "Automation" "<snip>" -e UIARESULTSPATH /var/folders/w1/55hzwq792vqdrv8bgw69yvy40000gp/T/run_loop20141107-1711-1whcn00 -e UIASCRIPT /var/folders/w1/55hzwq792vqdrv8bgw69yvy40000gp/T/run_loop20141107-1711-1whcn00/_run_loop.js &> /var/folders/w1/55hzwq792vqdrv8bgw69yvy40000gp/T/run_loop20141107-1711-1whcn00/run_loop.out

Failed to launch.

execution expired: execution expired

Running `curl http://ip.of.phone:37265/version` returns the expected json.

【问题讨论】:

【参考方案1】:

您能否检查以下内容:

    通过 USB 连接设备。 确保捆绑包标识符与应用的捆绑包标识符匹配。 设备是否出现在xcrun instruments -s devices 的输出中?如果没有检查 Xcode 的设备窗口(Command + Shift + 2)。确保该设备已列出并且没有任何警告出现。如果出现错误,退出 Xcode,重新启动设备,重新启动 Xcode。冲洗并重复,直到错误被清除。有时我必须将我的设备连接到另一台机器才能清除警告。 设备上是否安装了应用程序? Calabash 无法在物理设备上安装应用程序。请参阅this project,了解如何使用 ideviceinstaller 在设备上安装应用程序作为 Calabash 测试的一部分。我添加了一个 TODO 来改进该项目的 README.md。

APP_BUNDLE_PATH=~/Path/to/CreditCardValidation-Calabash/CreditCardValidation.iOS/bin/iPhone/Debug/CreditCardValidationiOS-1.0.ipa

APP (preferred) and APP_BUNDLE_PATH 环境变量仅在针对模拟器时使用。在针对物理设备时,它们会被忽略。

【讨论】:

以上是关于无法在 iOS 设备上为 Xamarin 应用程序运行 Calabash 测试的主要内容,如果未能解决你的问题,请参考以下文章

Xamarin:无法在 iOS 9.2.1 设备上运行应用程序

无法在 JetBrains Rider 的物理 iOS 设备上部署 Xamarin 应用程序

Xamarin.Forms 无法更改本地设备上 Xamarin.iOS 中的应用程序图标

未在 iOS 10 上为基于 XCode 7.3 构建的应用程序生成设备令牌

从 iOS 设备上为测试中的应用程序获取文件

Rider IDE 无法在 iPhone 设备上运行项目 Xamarin.iOS