I have a view with 3 text fields. All of them have some value.
When I send_keys to these fields, appium selects current value, clears the field and pastes new values with previous one. I mean:
Previous: One
New: Two
Actual result: OneTwo
Is that expected? Can I just insert new text?
Appium 1.6.4 (appium-desktop-Setup-1.0.2-beta.2)
code:
find_element(id: "activity_bot_edit_last_name").click
find_element(id: "activity_bot_edit_last_name").send_keys(new_last_name)
hide_keyboard