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
1 answer

Remove -cal target from Xcode

Setting up an Xcode project for testing with Calabash. How can I remove the -cal target completely. There is already a -cal target in the repository that is quite old. I would like to set up fresh but it seems to create another -cal target when I…
slindsey3000
  • 4,053
  • 5
  • 36
  • 56
0
votes
2 answers

App closes after splash screen through Calabash test

When running the "cucumber" command, the iOS Simluator launches and attempts to open my app. The app's splash screen appears and then the simulator goes back to the home screen. I eventually receive an error stating: Time out waiting for…
0
votes
0 answers

Table view click and scroll each row (Calabash)

So I am trying to scroll and click each cell on table view. I have one section and 13 rows I use following code Then /^I Traverse TableView$/ do each_cell(:animate => true) do |row, sec| txt = query("tableViewCell indexPath:#{row},#{sec}…
katch
  • 820
  • 1
  • 7
  • 24
0
votes
2 answers

Running Calabash Cucumber tests as part of CI for different Languages/Locale

I am currently investigating running Calabash/Cucumber tests for iOS as part of a Jenkins build job. The idea is it will run the tests against the different languages the application supports. The code to initialise the tests once the app has been…
SamRowley
  • 3,435
  • 7
  • 48
  • 77
0
votes
1 answer

How to pass xcrun environment variables to Calabash launcher?

I am running calabash-ios using calabash-cucumber version 0.11.3, run_loop version 1.0.9. As part of debugging our app we put an environment variable in to be used at runtime. I have been using xcrun about like this to launch the app: xcrun…
0
votes
1 answer

Is there a way to parameterize Calabash touch or query

Does anyone know if there is a way to uses variables in a calabash touch/query/etc function? For example, say I have a variable called hotel_name and I wanted to touch("* marked:#{hotel_name}") and use that in a test step like: Given(/I select…
0
votes
1 answer

Calabash testing on Jenkins build server

I am coming at this problem as a complete newbie with regards to configuring Jenkins build jobs. I can just about understand what is going on at this moment. I have local calabash tests running correctly and my project is setup according to this…
SamRowley
  • 3,435
  • 7
  • 48
  • 77
0
votes
1 answer

How to reference variables for the co-ordinates used by the dragFromToForDuration method

I have a simple routine to delete a number of records from a screen by swiping left on them. It only deletes records in a certain state, i.e. ready to submit. The top record might not necessarily be in that state, so I cannot use a fixed y…
Uncle Gus
  • 61
  • 1
  • 7
0
votes
2 answers

Undefined symbols for architecture x86_64 calabash

I'm trying to set up calabash in my project. I follow this tutorial: http://angelolloqui.com/blog/25-Acceptance-testing-with-Calabash-and-CocoaPods But it's like now the new target doesn't find the rest of clases in pods and I get this…
xarly
  • 2,054
  • 4
  • 24
  • 40
0
votes
2 answers

How to toggle keyboard on iOS 8 simulator using calabash-ios

When a text field is touched using the touch() function the keyboard on the iOS 8 simulator does not pop up anymore. Is there a way to toggle the keyboard using the Calabash API?
chilm
  • 23
  • 4
0
votes
1 answer

Calabash iOS does not run after update

After last Calabash update I am not able to run test anymore. I use: calabash-cucumber-0.10.2 run_loop-1.0.8 ruby-2.1.0 Xcode 6.0.1 and Xamarin Calabash component (Xamarin Test Cloud Agent 10.1.1) When I try to run tests I get: undefined method…
olexa.le
  • 1,697
  • 10
  • 14
0
votes
1 answer

cucumber touch cannot find textfield

On iOS 7, I have a test like this for calabash: And I fill in text fields as follows: | field | text | | Name | Batking | | Apt/Suite # | 87 | | ZIP…
0
votes
1 answer

Is there any tool available to automate iOS default (Emai)l app?

I have explored couple of tools like Appium,KIF, for these tools we need to own the app (to enable Automation Instrument) to automate. And also tried with .IPA files available on the internet (Gmail email client) on iOS simulator, not got any…
Surya
  • 4,446
  • 2
  • 17
  • 19
0
votes
1 answer

I'm looking for a way to assess network quality on a device before running a calabash script

Is this possible to do within calabash? I need to make this all automated and run a network assessment between scripts. If this is not possible to do with calabash, is there a way do do it using adb on android? edit: I don't want to embed this…
0
votes
1 answer

Calabash-ios link error: "_kSecAttrSynchronizableAny", referenced from: -[LPSSKeychainQuery query] in calabash(LPSSKeychainQuery.o)

I got a link error when trying to run a ..-cal target of calabash-ios project. The error is: `Ld…
1 2 3
13
14