首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >无法在Bitrise上运行iOS的UI测试

无法在Bitrise上运行iOS的UI测试
EN

Stack Overflow用户
提问于 2018-06-21 10:58:34
回答 1查看 540关注 0票数 1

我使用自己从GitHub:https://discuss.bitrise.io/t/how-to-do-calabash-uitesting-on-bitrise/361获得的示例存储库来学习本教程,我没有做任何特殊的事情,也没有做任何与本教程不同的事情。

我设法让APK和Android测试使用了calabash。但是出于某种原因,iOS的应用程序并没有出现在工件中,尽管它说它构建了它,而且UI测试(也使用calabash)失败了。

代码语言:javascript
复制
Cucumber Features

1 scenario (1 failed)
4 steps (4 skipped)

Finished in 6m22.928s seconds

Expand All

Collapse All
Feature: Sample Feature

features/sample.feature:3
Scenario: Sample Scenario


Could not connect to the DeviceAgent service.

device: #<Simulator: iPhone 6 (11.4) FDAAB45E-52F1-4133-A02D-632AA6A9A369 x86_64>
   url: http://127.0.0.1:27753/

To diagnose the problem tail the launcher log file:

$ tail -1000 -F /Users/vagrant/.calabash/iOSDeviceManager/logs/current.log

./features/support/01_launch.rb:27:in `Before'

25  }
26
27  launcher.relaunch(options)
28end
29
30# gem install syntax to get syntax highlighting

    Given the app has launched
    features/steps/sample_steps.rb:1
    And I have done a specific thing
    features/steps/sample_steps.rb:7
    When I do something
    features/steps/sample_steps.rb:32
    Then something should happen
    features/steps/sample_steps.rb:41

下面是bitrise.yml:

代码语言:javascript
复制
---
format_version: '5'
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
project_type: xamarin
trigger_map:
- push_branch: "*"
  workflow: primary
- pull_request_source_branch: "*"
  workflow: primary
workflows:
  primary:
    steps:
    - activate-ssh-key@3.1.1:
        run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
    - git-clone@4.0.11: {}
    - script@1.1.5:
        title: Do anything with Script step
    - certificate-and-profile-installer@1.9.3: {}
    - nuget-restore@1.0.7: {}
    - xamarin-archive@1.5.0:
        inputs:
        - xamarin_solution: "$BITRISE_PROJECT_PATH"
        - xamarin_configuration: "$BITRISE_XAMARIN_CONFIGURATION"
        - xamarin_platform: "$BITRISE_XAMARIN_PLATFORM"
    - calabash-ios-uitest@1.3.1:
        inputs:
        - work_dir: "./iOS"
    - deploy-to-bitrise-io@1.3.12: {}
    - create-android-emulator@1.1.5:
        inputs:
        - name: FOO
    - start-android-emulator@1.3.2: {}
    - calabash-android-uitest@1.2.1:
        inputs:
        - work_dir: "./Droid"
app:
  envs:
  - opts:
      is_expand: false
    BITRISE_PROJECT_PATH: Multiplatform.sln
  - opts:
      is_expand: false
    BITRISE_XAMARIN_CONFIGURATION: calabash
  - opts:
      is_expand: false
    BITRISE_XAMARIN_PLATFORM: Any CPU
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2018-06-26 07:33:39

我问过来自Bitrise的人,而且很明显,calabsh支持Xcode 6和7,这两个版本都很旧,而且Bitrise没有为该版本提供堆栈。

https://github.com/calabash/calabash-ios

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/50966857

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档