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
1
vote
3 answers

Calabash touch command works in calabash-ios console but not when running

I am in need of some serious help. When I input the touch command into the calabash-ios console, it works just as it should in every case. For example, touch("view marked:'Select Accounts'") works exactly as it should. However, when I…
Adebayo
  • 11
  • 1
1
vote
2 answers

Calabash iOS: query not listing disabled button

I'm trying to validate the existence of a UIButton that is initially disabled continueButton.isEnabled = false. When I check the tree in calabash-ios console I get the following result [UIWindow] [UIView] [UIView] …
Diego A. Rincon
  • 747
  • 1
  • 8
  • 25
1
vote
1 answer

Calabash console Android - query get all ids on screen

In Calabash console for iOS there is a command: ids The command displays all the element ids on the current screen. For Android you can use command query("*") Which displays all the views on screen, you can manually look through and find the…
Jake Graham Arnold
  • 1,416
  • 2
  • 19
  • 40
1
vote
2 answers

Calabash and iOS 10

After being unable to launch the calabash server on iOS found out on the google group for calabash-ios a post that mentioned the following "Xcode 8.0 beta 2 is out and as we anticipated, UIAutomation is no longer supported. We have created a…
superjd
  • 11
  • 2
1
vote
0 answers

How to target UISearchBar text field with Calabash on iOS 8.3?

I have a Calabash iOS feature that is failing on iOS version 8.3 but works on later versions. INFO: Embed is not available in this context. Will not embed. Then I fill in "Search" with "Haunted Halloween" #…
kevzettler
  • 4,783
  • 15
  • 58
  • 103
1
vote
2 answers

unable to find a version of 'run_loop' to activate (Gem::LoadError)

I am getting below mentioned error in Calabash-IOS during execute any cucumber command for executing feature file. unable to find a version of 'run_loop' to activate (Gem::LoadError) I am using gem versions which is given…
Pankaj Kumar
  • 151
  • 1
  • 3
  • 9
1
vote
0 answers

Communicating with an iOS device connected to an OSX VirtualBox VM

I am a tester writing cucumber test scripts using a Calabash/Ruby solution. Here is my setup. I have two iOS devices plugged into a mac-mini. I have Xcode running and connected to a physical device. I also have an Oracle Virtualbox VM running on…
1
vote
1 answer

Reset application state in Calabash iOS

I am using calabash-ios to run my tests and after every scenario the simulator will close and then restart to perform the next scenario. I am looking to keep the simulator open but reopen the application (so go back to menu and then reopen ?) So far…
Richlewis
  • 15,070
  • 37
  • 122
  • 283
1
vote
2 answers

HTTPClient::ConnectTimeoutError: execution expired

ENVIRONMENT: xcode path: /Applications/Xcode.app/Contents/Developer xcode version: Xcode 7.3 calabash-ios version: 0.18.2 run_loop version: 2.0.9 simulator: iPhone 6s Plus (9.3) Started my app manually from Xcode and did: $ curl…
kn003
  • 13
  • 4
1
vote
2 answers

How to tell Calabash to NOT timeout while the simulator... slowly... grinds into motion?

Context I have a Mac Mini running Xcode, and a series of Cucumber tests ran with Calabash. Issue They fail because the simulator takes very long (possibly 50 seconds) to get up and running. I've tried to pass timeout launch options (by passing them…
Kheldar
  • 5,361
  • 3
  • 34
  • 63
1
vote
2 answers

Running and communicating Calabash android and calabash iOS together

Does anyone ever tried running calabash-ios and calabash android together. Suppose I have installed application A in android and application B on iOS and want to send some message from application A and validate that in application B. Please let me…
1
vote
1 answer

Upgrading to iOS 9.1 simulator makes Calabash not recognize the device target

xcode installation location: /Applications/Xcode.app/Contents/Developer xcode version: Xcode 7.2 Build version 7C68 calabash version: 0.16.4 calabash.framework version: `0.16.4` profiling:…
irradio
  • 53
  • 7
1
vote
1 answer

Calabash-cucumber ios: how to delete a char in textField

I am trying to delete a character in textField, using --keyboard_enter_char "Delete"-- and here is my code in step definition. touch(query("textField")[0]) # touch the textField and bring up the keyboard, working keyboard_enter_text("a") …
Ke MA
  • 761
  • 12
  • 30
1
vote
2 answers

Calabash-ios: Trying to query for the objects id's list and get "*****" in the result

In calabash-android, the command query(“*”,:id) returns with the list of the object’s id’s content (and empty id will return: nil). But, in calabash-ios, the same command return with list of “*****” (example below). The entire list is like that,…
Nir Ortal
  • 77
  • 12
1
vote
1 answer

Take screenshot with Calabash iOS and save it to a physical device

Is it possible to take a screenshot on a physical device and save the picture on the device? Basically I'm looking for the same functionality of doing Home+Lock (which takes a photo of the screen). I need this because I require to have stored a…
Cristian
  • 199
  • 2
  • 13