Questions tagged [calabash-android]

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

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

Links

More

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

Related

249 questions
2
votes
1 answer

calabash-android within travis

I am trying to get calabash-android running within travis. calabash-android works fine within my machine without any problems. I have the following travis.yml: language: android jdk: oraclejdk8 before_cache: - rm -f…
2
votes
2 answers

Enter username and password into Dropbox login webview with Calablash android

I'm creating a test that is expected to login in dropbox. So the app starts the dropbox login webview. With query("webView css:'input'") I'm able to retrieve the two inputs: login and password. When I try to set the email field with…
gderaco
  • 2,322
  • 1
  • 16
  • 18
2
votes
1 answer

How to click ok Button on alert box in calabash android

When i login to my app it will ask me for permissions to access camera roll and notifications i need to click OK button on those Popups . can any one tell me how to write step definitions for that?
2
votes
1 answer

Circle-ci how to enter keystore information to use a custom keystore instead of the default

I am integrating calabash-android test on CircleCI. Everything has been working fine so far in my local. When I started building the test on CircleCI getting the below response Please enter keystore information to use a custom keystore instead of…
Muneer Muhammed
  • 883
  • 3
  • 10
  • 29
2
votes
1 answer

Calabash iOS and Android touches the wrong input element in a WebView

when trying to query and element with Calabash the query returns the element correctly but when trying to touch it it doesn't work! it touches the button under the element. In our case we have a login screen, each element on the page has a unique…
2
votes
1 answer

Calabash-android: How can I simulate device home button for calabash-android

I am using system("adb shell input keyevent KEYCODE_HOME") to simulate the home button in calabash-android, my test fails for my next step.As per my app functionality when the relaunch the app from the background it displays with the pin…
2
votes
2 answers

How to bring app to Foreground in calabash-android?

I am working on a application, it contain social share options. Whenever I tap on facebook it will open facebook app in the device with share view. After that, I want to bring my application to foreground. I tried pressing back button,…
Aravin
  • 6,605
  • 5
  • 42
  • 58
2
votes
1 answer

error installing calabash android on windows

i'm trying to install calabash by running this command: gem install calabash-android i'm running windows 8.1 i have installed ruby 2.0.0 x86 and dev tools according to the instructions in the accepted answer here: cannot load such file --…
Zohar Levin
  • 2,364
  • 3
  • 19
  • 24
2
votes
0 answers

calabash android run with japan text

I try run Calabash-android test. But i got a trouble. This is my script test: Feature: Check Navigation feature Scenario: Click on Navigation button of menu When I should see "確認" Then I wait for 3 seconds Then I press the "OK"…
thaitujim
  • 21
  • 4
2
votes
1 answer

Calabash Android runtime error : Could not remove keyguard

I am getting the below error when i start the test server. The steps I followed are: 1) calabash-android resign features\com.whatsapp-v2.12.114-450480-Android-2.1.apk 2) calabash-android build…
2
votes
1 answer

adb- Is there a way to simulate IME_ACTION _DONE?

Can you simulate IME_ACTION_DONE commands on the adb shell? I have used this but it does not work adb shell input ime IME_ACTION_DONE I am trying to use this system command on my calabash test by running the above command using the system function
2
votes
1 answer

How do I output calabash query results to a textFile

ok, I've read all the calabsh query docs on xamarin for android and iOS and the Ruby file class and still can't find the answer, so if anyone can help then that would be great. What I trying to do is run querys in the calabash-android console window…
Graeme Phillips
  • 131
  • 1
  • 1
  • 10
2
votes
1 answer

Calabash how to speed up execution time

I have a Android device connected to my PC. Running a calabash test I use the following command: calabash-android run .apk features/.feature Now before running a feature Calabash always uploads the application again witch takes…
lony
  • 6,733
  • 11
  • 60
  • 92
2
votes
1 answer

how to find visibility of element / image in calabash

I am working on calabash android with the platform ruby. And I have to find the visibility of an element / image and it has id and as well only one property ie., enabled , that too always true. and i tried the options isVisible , isDislayed but am…
Lucan
  • 99
  • 1
  • 3
  • 12
2
votes
1 answer

calabash-android: INJECT_EVENTS permission (RuntimeError) when executing press_back_button

Action 'press_key' unsuccessful: java.lang.SecurityException: Injecting to another application requires INJECT_EVENTS permission (RuntimeError) That is the error I receive when Calabash encounters the press_back_button command in a step definition.…
1 2
3
16 17