Questions tagged [calabash-ios]

Calabash iOS is an automated acceptance testing framework for iOS native and hybrid applications.

is an automated acceptance testing framework for native and hybrid applications.

Links

Requeriments

  • MacOS 10.9 or 10.10
  • Xcode 5.1.1 - Xcode 6.3
  • ruby 1.9.3 - 2.2.+

More

If you have any questions on , you can also use the Google group

Related

207 questions
0
votes
2 answers

How can I install Calabash-android for Ubuntu?

I am new to Calabash and recently switched from Windows to Ubuntu. Can anyone give me detailed steps on how to install Calabash-android for Ubuntu 14.04? Please advise.
0
votes
2 answers

Integrating Calabash with existing iOS app in Xcode issues

To setup Calabash-iOS I have followed below steps: Installing using command gem install calabash-cucumber In project folder, I have executed calabash-ios download I have followed links like: this and this. Now, since I don't want different target…
DShah
  • 9,768
  • 11
  • 71
  • 127
0
votes
1 answer

Does calabash support iOS 8.4 on physical devices

I have been using calabash-cucumber gem version 0.14.0 on iOS , I tried to install the app and test on a device that was recently upgraded to iOS 8.4 and it does not seem to work. Will Calabash-cucumber work on iOS 8.4 physical devices if so what…
PTeng
  • 23
  • 3
0
votes
0 answers

Cucumber feature run report output is displaying in the console but not displaying in the html report

Calabash-ios Version: >0.14.1 & RubyMine IDE The below command produces the output in the console and the displayed output is not appearing in the html report.The report which shows only the feature file steps as attached. Command1:…
0
votes
1 answer

calabash-automate the app which gets opened by hitting a link from browser

I have already my calabash android set up there which is working fine. Now I have to add a scenario where in android emulator I need to open the default browser navigate to an url ( i.e https://def/l/abc) It would open the app assuming the app is…
asinha
  • 337
  • 1
  • 6
  • 24
0
votes
2 answers

App crashing on launch with instrumentation w/ calabash-ios

UPDATE: This was fixed by resetting the phone's settings. General -> Reset -> "Reset all settings". We are having on issue on iPhones 6 and 6+ when launching our IBM MobileFirst-based app. When calabash instrumentation is linked and I manually…
tuggles
  • 21
  • 4
0
votes
2 answers

calabash-ios UIPickerView scroll to specific value

I have a UIPickerView on an iOS app. Trying to use calabash-ios to scroll down on the UIPickerView to a specific value. It is a list of years. I tried this to see if it will scroll at least: Then I scroll down on…
haitham
  • 3,398
  • 6
  • 21
  • 35
0
votes
1 answer

undefined local variable or method `start_test_server_in_background' for #

This has been asked before for .12.0 but I am now getting a similar error in .14.2 . Up until a few weeks ago I was running calabash.framework 11.4 because it worked, was stable, and it was under lock and key on our development server. We went…
CMESSEY
  • 17
  • 2
0
votes
1 answer

How to make calabash-ios tests run within CircleCI?

How can you run calabash-ios tests within CircleCI? This is what I have tried: machine: xcode: version: "6.3.1" dependencies: override: - sudo gem install calabash-cucumber - sudo gem install cocoapods test: …
haitham
  • 3,398
  • 6
  • 21
  • 35
0
votes
1 answer

Is there a way to speed up recovery from a crash

I'm trying to find a way to switch Calabash to next Scenario after noticing a crash Retrying.. HTTPClient::ReceiveTimeoutError: (execution expired) Retrying.. HTTPClient::ReceiveTimeoutError: (execution expired) Failing...…
Dmitry T
  • 3
  • 1
0
votes
1 answer

I can't tap element on iOS ui with calabsh

I have a label on iOS app that I'm not able to touch irb(main):022:0> label "label" [ [0] "Create account", [1] "Log in", [2] "com.blabla - v505" ] I want to click the last element that basically is this irb(main):014:0> query("view…
fege
  • 547
  • 3
  • 7
  • 19
0
votes
1 answer

How can I find the element in the list by doing scroll up and down in calabash-ios

I want to find a element in the list but I am in middle of the list so I have do both scroll up and down to find the element in the list. Can Anyone help how to do both scroll up and down to find the element in the list Thanks in advance Karthick
Karthick
  • 21
  • 1
  • 4
0
votes
1 answer

Calabash iOS - wait_for_element_exists not working

I try to avoid the sleep() command so I want to replace it with smarter functions like wait_for_element_exists() but they seems to not work under iOS. Example: touch("button marked:'button_in_the_first_view'") wait_for_element_exists("button…
Kaktusiarz
  • 415
  • 7
  • 22
0
votes
0 answers

uia action failed because: Timed out running command uia.tapOffset

I am experiencing some random errors when running my Calabash tests and trying to touch elements uia action failed because: Timed out running command uia.tapOffset('{:x 187.5, :y 131.5}') I am running the tests on Yosemite, Xcode 6.2 and on iOS…
Titouan de Bailleul
  • 12,920
  • 11
  • 66
  • 121
0
votes
1 answer

Calabash - how to compare text from label with given id?

I want to make assertion of the results of Calabash queries for labels with given ids. But the 'assert' method seems to not exist in Calabash. I test an iOS application. My code: Then(/^arrival date has been changed to day after departure date$/)…
Kaktusiarz
  • 415
  • 7
  • 22