how you enter text into this field?
try logic as user:
- tap on password input
- send text with keyboard
// Java
new Actions(driver).sendKeys(text).perform();
Quite often sendKeys to element does not work correctly. Much depends on how app written.
how you enter text into this field?
try logic as user:
// Java
new Actions(driver).sendKeys(text).perform();
Quite often sendKeys to element does not work correctly. Much depends on how app written.