android - Robotium new line in EditText -


is possible make line break in edittext using robotium?

i tried

solo.clickonview(et); solo.(keyevent.keycode_enter); 

as as

solo.typetext(et, "\n"); 

both not working.

any ideas?

first of all, please make sure edittext support multiple lines.

then found cases, inputing multiple lines works me when use entertext instead of typetext.

e.g.

solo.entertext(et, "\n"); 

Comments

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -