Hi,
I upgraded frop Appium 10.8 to Appium 10.9,
and now, I can’t use SendKeys like:
driver.sendkey("Hello"),
I have to find an element before:
driver.findElement(By.xpath("//*[@text='Write']")).sendKeys("Hello");
I also can’t send an “Enter” with sendKeys("{ENTER}") , it send “EE”
can I send an ‘Enter’ on Appium 10.9? Send something without find an element before?
One option would be:
driver.executeScript(“client:client.sendText(”{home}")");