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

"Unable to interpret path (null)" from instruments when trying to run calabash-ios test against Xamarin app

I have a new machine that is a clean setup of Ruby, Cucumber, and Calabash-IOS. When I try to run cucumber from Terminal I get an error popup from instruments that says "Unable to interpret path (null)" and the simulator never launches I tried…
Brad Cunningham
  • 6,402
  • 1
  • 32
  • 39
0
votes
1 answer

Drag and drop slider handler to scroll track

I need to test functionality of media player. There wouldn't be any problem, but I can't figure out how I can drag and drop slider handler to change current track playing position. I have tried function change_slider_value_to but it does not work…
kjuri
  • 158
  • 1
  • 10
0
votes
2 answers

How to Take Screenshots of openGL with calabash

How can I take screenshots of openGL with calabash while using the ios simulator? In the past I could do it with (localhost:37265/screenshot2), but now it is deprecated.
0
votes
1 answer

Is it possible to use the page function inside a class?

I'm writing some tests in calabash, and trying to use the page function inside a helper class. I have my steps file Given /^I am on my page$/ do mypage = page(MyPage) MyPageHelper.DoMultiActionStep() end And my page file class MyPage <…
rozza
  • 927
  • 2
  • 11
  • 24
0
votes
1 answer

Run cucumber file on multiple iOS devices

How to run cucumber test on multiple devices at the same time on iOS platform(iPhone, iPad) ?
Mesh
  • 193
  • 1
  • 7
0
votes
1 answer

How to open chrome & visit a webpage on iphone simulator using calabash & webdriver?

I want to automate a use case in which I have to open chrome on iOS simulator and visit a web page. I am using calabash, I am able to start the simulator too but dont know how to start the chrome browser and visit a page.
Vamsi
  • 78
  • 9
0
votes
1 answer

Calabash Console Output Buffer

Update: This issue has been resolved. Resolution in comments below. When running Calabash tests in both terminal or through Rubymine, the output does not display until the test is finished. With webdriver tests, we get output in real time. Is…
tuggles
  • 21
  • 4
0
votes
0 answers

Calabash-ios Javascript Evaluation for CSS Attributes

I'm wondering if there is a way to use :stringByEvaluatingJavaScriptFromString to fetch a specific css attribute from an element. For instance, say I want to validate a background image and the css specifies background-image: blue.png. I'm having…
tuggles
  • 21
  • 4
0
votes
1 answer

calabash-ios unexpected ECONNREFUSED error after touch

xcode install /Applications/Xcode.app/Contents/Developer calabash version ➜ calabash.framework git:(master) ✗ Resources/version 0.9.169 Calabash Server Version { "outcome" => "SUCCESS", "app_id" =>…
John LaBarge
  • 149
  • 1
  • 9
0
votes
1 answer

Obtaining navigation button controls in calabash-ios v0.9.169

Prior to calabash-ios v0.9.169 I used to be able to obtain certain navigation button controls using the following query: query("view:'_UIToolbarUINavigationButton'") Since v0.9.169 I can no longer obtain this control- the query returns an empty…
-1
votes
1 answer

Difference between cucumber run and calabash-android run command?

Please clarify when do we use $cucumber run and when do we use $calabash-android run test.apk
DUDE_MXP
  • 724
  • 7
  • 24
-3
votes
1 answer

Command to use instead of sleep() in Calabash

I am using calabash automation with Ruby for my project in iOS. scenario/Ruby: Given(/^I click Login$/) do homePage = page(HomePage) homePage.loginButton() sleep(3) end When(/^I enter valid credentials$/) do loginPage =…
Rani
  • 1
  • 3
1 2 3
13
14