Hi,

Now only i started learning robotium.

I started doing blackbox testing alone.

Even i struck with so many issues.

I get the android apk file and installed in my emulator.

The first page is a login page.

public void testValidateLogin() {
String text =
"jv";
String text1=
"jv";
//Enter UserName
solo.enterText(0, text);
// Enter the Password
solo.enterText(1, text1);
//Click Login Button
solo.clickOnButton("login");
assertFalse(
solo.searchText("Incorrect login credentials"));
}
---------------------------------------------------
unfortunately my username and password typed on the same textbox. I
mean to say like my user name and Password are entered into the same
textbox(username TextBox).
Can u pls help me out in this..

Thanks
Madhu

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to