0
votes
2answers
439 views

uiAutomator failing on 4.1.2 device

When playing with the Android uiAutomator I've run into an issue when trying to run the tests on a 4.1.2 device. When using the code from the enter link description here an exception is thrown when ...
0
votes
1answer
66 views

How to click on RelativeLayout with UiAutomatorViewer

I have UiObject okButton = new UiObject(new UiSelector().text("button1")); okButton.click(); and it works perfectly I set android:contentDescription="button1" and everything works fine, the button ...
1
vote
1answer
441 views

UiAutomator getLastTraversedText()

I was trying to test an Android Webview using Android UiAutomator. As I understand the documentation, scrolling through a WebvView would generate UI traversal events, and those should be readable via ...
0
votes
1answer
167 views

Android Web Driver - cannot simulate touch actions

I've downloaded the android_webdriver_library.jar via the Eclipse ADT SDK Manager under Extras/Google Web Driver and reference it in my eclipse project. How do I simulate a touch action like tapping ...
4
votes
1answer
226 views

How to fill in password EditText with Android uiautomator?

Is it possible for the uiautomator to select a password EditText? I have no problem finding other EditText views by their android:hint property, but the uiautomatorviewer shows all password fields as ...
0
votes
0answers
51 views

How to validate font, color and size of a button in UIAUTOMATOR for Android App test?

I am using UIAutomator Viewer and UI Automator to automate my android APP UI testing. I need to validate the UI elements of the APP. For example: For a particular button I need to validate the font, ...
1
vote
0answers
58 views

Can we compare two dump file(xml) taken by uiautomatorviewer

I am using uiautomatorviewer tool of Android API Level 17, so I want to compare two dump file which is taken by uiautomatorviewer tool for UI Testing.
1
vote
1answer
581 views

Integrating Monkeyrunner with UI Automator

Is it possible to integrate monkey runner with UI Automator. I have imported the Monkeyrunner jar in UI Automator project.But when I run ant build Build Fails as it does not recognise any of the ...
1
vote
0answers
154 views

Not able to run adb command in Ui Automator

I am not able to run adb command in UI Automator. When I run a adb command using Runtime r=Runtime.getRuntime().exec("adb devices"); I get the following error: Error executing exec: Command:(adb ...
5
votes
0answers
1k views

Android integration testing: Robotium or UIAutomator? [closed]

I want to setup integration testing for an Android app and I wonder what is better for this: Robotium or recently introduced uiautomator. I had previous experience using Robotium and this framework ...
16
votes
3answers
1k views

When i run my android UIAutomator code, it shows error

When I run my android UIAutomator code, it shows following error. INSTRUMENTATION_RESULT: shortMsg=java.lang.RuntimeException INSTRUMENTATION_RESULT: longMsg=com.android.ui.testing ...
-1
votes
1answer
300 views

Which is best for android automation calabash or UIAutomator api

Friends please suggest me which is best for android automation - calabash or UIAutomatorViewer. I dont have any idea about calabash, but few of my friends started working on it.
5
votes
2answers
931 views

How to use uiautomatorviewer for android

I used the uiautomatorviewer to do UI android automation. But when i try to take snapshot to list the UI, it shows adb is not installed. Please help friends....
12
votes
4answers
1k views

How can I automatically test the functionality of iOS and Android applications?

I have to regularly test the availability and functioning of a movie rental website. I wrote a Windows program which is able to automate a web browser according to a script, so this task is basically ...
0
votes
2answers
764 views

Create a bat file to run Android automated tests(Robotium) from command line

I am working on Android automated testing. We would like to have a bat file integrated with MSBuild.exe. I have all the test cases created, however, I cannot get the bat file working properly. ...
0
votes
2answers
3k views

InputDispatcher: Dropped event because input dispatch is disabled

I am developing ui automation platform for android. For some reason sometimes (very rare) click events can be dropped When it happen I see in log I/InputDispatcher( 2707): Dropped event because ...
0
votes
1answer
292 views

Could someone point me how adbd dump view hierarchy?

I just asked this question: Are there ways to get android app view hierarchy from another android app? I searched the android source a lot, and read the source code hierarchyviewer, seems that ...
0
votes
2answers
244 views

Are there ways to get android app view hierarchy from another android app?

I'm researching ways to do android automation running on the device, without any workstation connection. My approach is like this, i modified monkey's source, and is able to start 3rd party app ...
0
votes
2answers
855 views

Going to another Activity in Robotium

I'm new to Robotium and Android testing, lately I tested iOS apps. Now I am testing Android application, and on the first Activity I enter email and password, so when it is done, I press the Enter ...
4
votes
1answer
582 views

Android Testing - Issue with ActivityInstrumentationTestCase2?

I am running UIAutomation for android using Robotium and ActivityInstrumentationTestCase2. I have a test suite with 5 tests. Sometimes my test randomly crash because a test starts, once the previous ...
0
votes
1answer
438 views

Android & Robotium - waitForActivity doesn't fail when it suppose to?

solo.clickOnButton("Login"); solo.waitForActivity("activityThatDoesntExist", 20000); application navigates to an activity named "HomePageActivity", but the test passes even though the activity name ...
2
votes
1answer
500 views

Android & Robotium - Testing that a fragment shows up?

In my android application (Tablet) I want to verify that after selecting a button the fragment appears on the screen. Is there a way to do this?
0
votes
1answer
516 views

Android & Robotium - Writing automation tests?

I am using Robotium to write automation tests. Should I create 1 test per activity? How do i deal with navigating from 1 page to another during 1 test, because when I start the next test it doesn't ...
1
vote
1answer
156 views

Dynamically load layouts or options

I was just wondering if anyone has implementing anything like the following for Android. Suppose you have an interactive menu system but depending on the selections by the user different options could ...