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

Need help in packaging app using TideSDK on Windows -

c++ - boost interprocess mutex in managed_shared_memory -