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 -

java - How to transfer data to another jsp -