如何通过点击黄色圆圈按钮来隐藏键盘?

时间:2016-09-08 15:54:07

标签: ios keyboard testng appium appium-ios

我使用appium和java来自动化我的测试。 我想知道我用黄色圈出它的按钮的名称。 如何通过点击黄色圆圈按钮来隐藏键盘?

HERE the link for another question, but still have the same problem

enter image description here

2 个答案:

答案 0 :(得分:1)

您可以尝试使用:

driver.hideKeyboard("Hide keyboard");

答案 1 :(得分:1)

这是Appium Inspector,显示密钥的详细信息:

enter image description here

所以这里有2个隐藏键盘的不同例子:

driver.hideKeyboard("Hide keyboard");

driver.findElement(By.xpath("//*[contains(@name, 'Hide keyboard')]").click();