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

Calabash-ios, can't launch .ipa file when running cucumber

I am having difficulty when trying to launch .ipa file on a physical device. In the console I have been able to launch app and to hit different buttons etc. so I think I have everything set up correctly. I have also put the .ipa file in the…
0
votes
2 answers

Can't start test server on physical device

I installed calabash on a new machine, but tests that I ran on my old machine will not run. As far as I can tell, both machines are set up the same way. They pull the project from the same repository, which includes a Gemfile with…
Randy Jones
  • 118
  • 1
  • 5
0
votes
1 answer

Mobile automation on ios using calabash

Is rebuilding of ipa mandatory while working on iOS automation using calabash? If it is mandatory then how can it be run on Xamarin Test cloud/testmunk? Can any one elaborate on this? I'm starting from scratch. But no proper site for set up or…
Divya R
  • 1
  • 2
0
votes
2 answers

How to generate allure report with calabash?

I'm using calabash for automate mobile app. Is it possible to integrate allure report in calabash framework?
Andy
  • 223
  • 1
  • 6
0
votes
1 answer

Calabash xamarin

I am not able to generate Snippets with Regular Expressions in Xamarin.iOS Calabash. Eg.. Feature:ABC Given I launch my app Then I should see text "Home" Snippets generated: Then(/^I should see text "Home"$/) do pending #Write code here that turns…
Smita
  • 1
0
votes
1 answer

Calabash: Increase wait timeout for predefined step

Then I wait to see "Choose a drink:#0" # calabash-cucumber-0.18.0/features/step_definitions/calabash_steps.rb:154 execution expired (Calabash::Cucumber::WaitHelpers::WaitError) While using predefined steps, it works…
sowdri
  • 2,193
  • 5
  • 23
  • 36
0
votes
2 answers

Ruby - syntax error, unexpected tLABEL

I am getting syntax error, unexpected tLABEL in below Ruby code. The error description is pointing to ':' after 'timeout'. def self.run(*args, timeout: nil, environment: {}) # ... end I have no knowledge of Ruby. I have tried few things like…
iuq
  • 1,487
  • 1
  • 20
  • 42
0
votes
2 answers

How to find UIButton by title label in calabash ios?

Hy! I am trying to write predefined steps in calabash ios for finding a button with a certain title. My question is how do I find a certain UIButton using its title label in calabash? I've tried the following: Then (/^I see button with title…
Dalma Racz
  • 149
  • 1
  • 7
0
votes
1 answer

Non helpfull error message Calabash with page objects pattern

I'm currently using Calabash framework to automate functional testing for a native Android and IOS application. During my time studying it, I stumbled upon this example project from Xamarin that uses page objects design pattern which I find to be…
Rogério Peixoto
  • 2,176
  • 2
  • 23
  • 31
0
votes
3 answers

Calabash iOS how to tap the back button item

Guys just cant figure out how to tap on BackButtonItem from Navigation Bar with Calabash framework, I'm setting accessibilityLabel like this: self.navigationItem.leftBarButtonItem?.accessibilityLabel = "goBack" and trying to test it like this with…
0
votes
1 answer

Calabash not touching buttons properly after background

My environment: Xcode: 7.2.1 Simulator: iOS iPad Air 9.1 Calabash: 0.17.1 Currently, I'm having an issue with my iOS application not touching buttons correctly after I background my application. Here are the general cucumber steps where the issue…
irradio
  • 53
  • 7
0
votes
0 answers

calabash-ios rotate throws launcher/run_loop error

I'm trying to use the rotate funktion to bring the app into the landscape view. In the Console that works just fine like: rotate(:right) rotate(:left) rotate :right rotate :left They work without a problem, however as soon as i try them through my…
Alexander
  • 43
  • 6
0
votes
1 answer

“Unable to auto detect APP_BUNDLE_PATH” error while running the Calabash test on iOS

I’m new to the Calabash iOS automated testing. I have installed “Xcode 4.2”, “Ruby version 2.0.0p643” and “calabash-cucumber gem” on Snow Leopard (version 10.6.8) I ran the command “calabash-ios setup” and created a target (test-cal target) for my…
Naresh
  • 433
  • 5
  • 14
0
votes
2 answers

Getting Calabash values prints out only ****

I'm trying to get the value of a property using Calabash, specifically the "value" property on my "CustomSwitch" class. Here's the result anytime I try it: irb(main):029:0> query "CustomSwitch", :value [ [0] "*****" ] I get a similar output for…
Bill L
  • 2,576
  • 4
  • 28
  • 55
0
votes
2 answers

How to set keyboard_enter_text timeout at calabash?

the problem is that i am trying to write a large text using the keyboard_enter_text and everytime this code runs it stops at the half and start again, after sometime it gives me the timeout error. And I write an large post into post field #…
Igor Matos
  • 33
  • 3