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

matlab - Deleting rows with specific rules -

jquery - How would i go about shortening this code? And to cancel the previous click on click of new section? -