Robotium is a test framework that allows black-box test cases for native Android applications. Robotium supports testing without source code (when only apk file is available) and on rooted phones also supports pre-installed applications.
0
votes
2answers
17 views
Installed test APK does not appear on device's main screen
I installed an instrumentation test APK from Eclipse(Run->Run As Android application) on device as the log shows below.
[2013-08-08 22:14:13 - SettingsTests] /SettingsTests/bin/SettingsTests.apk ...
0
votes
0answers
11 views
Monkeyrunner/Robotium touch the webview but cannot direct to new page
I've been using Robotium to test on several open source phonegap applications. Recently when I test for Wikipedia and TeamToy-Pocket. I find that Robotium would click on the webElement but will not ...
0
votes
1answer
15 views
Test starting time of application
I want to test if my launch time of the app (means MainActivity) is being startet after 3 seconds by using Robotium and ActivityInstrumentationTestCase2.
I have an intro screen that waits 2 or 4 ...
1
vote
1answer
23 views
Robotium new line in EditText
is it possible to make a line break in an EditText by using Robotium?
I tried
solo.clickOnView(et);
solo.(KeyEvent.KEYCODE_ENTER);
as well as
solo.typeText(et, "\n");
Both are not working.
Any ...
0
votes
2answers
34 views
How to call a method in another class using robotium
Using Robotium for my Android automation I find myself creating the same steps for each test case.
I always need to "Login" and "Logout", I've been trying to create a FunctionsTestClass so I can ...
0
votes
0answers
11 views
Changing Android Apk Locale via Robotium
I'm working on an activity instrumentation test case which automates verification of an AUT using the Robotium framework. There are several language tests I want to automate. I've attempted to change ...
0
votes
2answers
31 views
Create Android APK Test Application
I have an app to be tested, called app A.
I also have a test project for automated testing of this app.
I want to have a second app which includes these test cases, so that I can run all test cases ...
0
votes
2answers
31 views
how to navigate to settings in android emulator using robotium?
I am a newbie for Robotium and till then I managed to learn a lot by directly writing test cases for public websites and sorted out several issues from answers in stackoverflow. now, I seemed to hit ...
0
votes
2answers
23 views
Access the variables of a class in another class
I seek to know that can we create an object of one test class in another test class and acess the variables:
Ex: A string value of a textView which is assigned to a variable in class A.
Can we ...
0
votes
0answers
7 views
Validation of the Report data using Robotium
I am using Robotium to automate a Logistic Product. I am stuck in a problem in this scenario:
Suppose X choses options A,B,C and D elements of a report and shares it to Y. There is a scenario where ...
0
votes
1answer
21 views
Android: Using Robotium for extracting GUI tree
Robotium is a tool which is great for black box testing. I was wondering is it possible that I extract the GUI tree of an app with Robotium.?
0
votes
1answer
18 views
Database Transaction using Robotium
Heloo All,
I am automating the product developed using Robotium. Am able to cope with many of the modules. Only thing is I need to hardcode the validations like:
If userName is "xyz" then password ...
0
votes
0answers
30 views
Android: How to send the touch events to device using adb commands with out using x,y coordinates
curretly i am using ADB shell input commands to send the touch , swipe events and all.
For that i need to pass the X,Y coordinates of the touch point. Say for an example to send a touch event for the ...
0
votes
1answer
33 views
How to validate a view or layout in robotium
I have showing different view in my android application how to validate weather the view or the whole layout is present or not by using robotium in android.
1
vote
1answer
19 views
Turning Internet Connectivity off with Robotium
Is it possible to turn internet connectivity (data/wi-fi) off/on through Robotium if the app itself does not have access to it?