iOS-sendKeys is not working

Hi,

i want to type in a material-form-field, how does that work with appium?

I tried it with the following code:
WebElement element = driver.findElement(…)
element.sendKeys(“100“)

It is not working, the field stays empty, any other ideas?

maybe you find wrong element. show a bit how you find element and page source.

No the element which is found is correct, the element can be clicked but the value can´t be set

Well in such case hard to say. Try tap into input. Often after tap input field structure changes. Double check that you sending to correcr element. Try find input after tap.

Thank you for your answer, i tried your suggestion, but it did not work. Any other ideas?