Android field once clicked Appium can not see the Element

Android field has to be clicked to Enter Text but once clicked the keyboard obfuscates the text field hiding the Keyboard takes away the focus is there a way I can blind enter Text somehow? Once the first Letter is typed I can see the Text Field again. I am using C# to write my code so providing a c# solution would be appreciated.

just type with keyboard

driver.SendKeys(example)?

Appium 2.0, Java client 8.3.0

new Actions(driver).sendKeys(text).perform();
1 Like