2015-10-06 106 views
0

嗨,大家好,任何人都知道如何解決這個問題葫蘆我試圖運行我的第一個場景,但我得到一個錯誤,這是我第一次使用葫蘆,我不是一個真正的開發人員我只是一個質量保證測試員,我不知道如何解決這個問題,你能告訴我或者解決這個問題的步驟嗎?Calabash IOS無法找到xcode項目

**Scenario: Example steps**   
        # features/my_first.feature:6 
    Unable to find *.xcodeproj in /Users/FDMCarlo (RuntimeError) 
    /Library/Ruby/Gems/2.0.0/gems/calabash-cucumber-0.16.3/lib/calabash-cucumber/launch/simulator_launcher.rb:106:in `derived_data_dir_for_project' 
    /Library/Ruby/Gems/2.0.0/gems/calabash-cucumber-0.16.3/lib/calabash-cucumber/launch/simulator_launcher.rb:223:in `app_bundle_or_raise' 
    /Library/Ruby/Gems/2.0.0/gems/calabash-cucumber-0.16.3/lib/calabash-cucumber/launcher.rb:573:in `relaunch' 
    /Users/FDMCarlo/features/support/01_launch.rb:27:in `Before' 
    Given I am on the Welcome Screen     # features/step_definitions/my_first_steps.rb:1 
    Then I swipe left        # calabash-cucumber-0.16.3/features/step_definitions/calabash_steps.rb:222 
    And I wait until I don't see "Please swipe left" # calabash-cucumber-0.16.3/features/step_definitions/calabash_steps.rb:158 
    And take picture         # calabash-cucumber-0.16.3/features/step_definitions/calabash_steps.rb:217 

Failing Scenarios: 
cucumber features/my_first.feature:6 # Scenario: Example steps 

回答

0

您需要將APP命令行變量設置爲指向您的應用程序。這假設你正在對模擬器進行測試。

$ APP=/path/to/your.app cucumber 

如果您正在測試設備,請參閱Calabash iOS wiki上的本指南。

請用您嘗試運行的命令確切命令更新您的答案。

報告問題時,請參閱此wiki page,其中顯示我們需要正確回答您的問題的詳細信息。

+0

您好先生jmoody您可以告訴我如何運行$ APP =/path/to/your.app黃瓜或如何將我的應用程序指向模擬器,因爲我沒有任何關於它的想法謝謝:) –

+0

This repo https ://github.com/calabash/ios-smoke-test-app提供了從命令行和Xcode構建應用程序和ipas到本地目錄的例子。 – jmoody