REQUIREMENT:After sending keys in the text filed as .SendKeys("Value")I want to envoke a space bar strokeI tried .SendKeys(Keys.Space)But its clearing the field.
Try by sending it in a single command
.SendKeys("Value"+Keys.Space);
@harshIts not working
.SendKeys("Value ");
Have you also tried this one giving space after string?
Yes, i have already tried this one too.. Its not working either
Did you Turn Off Auto-Correction in Android/iOS?