How to envoke a keyboard stroke in text field?

REQUIREMENT:
After sending keys in the text filed as .SendKeys(“Value”)
I want to envoke a space bar stroke
I tried .SendKeys(Keys.Space)
But its clearing the field.

Try by sending it in a single command

.SendKeys(“Value”+Keys.Space);

@harsh
Its not working :frowning:

.SendKeys("Value ");

Have you also tried this one giving space after string?

Yes, i have already tried this one too… Its not working either :frowning:

Did you Turn Off Auto-Correction in Android/iOS?