我使用以下内容:
我在浏览器上清除字段文本时遇到问题。我尝试使用:
似乎无效。
<编辑> 我的代码:
WebElement emailField = driver.findElement(By.xpath("//android.widget.EditText[contains(@content-desc , 'Email')]"));
emailField.click();
emailField.clear();
emailField.sendKeys("abc123@gmail.com);
答案 0 :(得分:0)
我对Galaxy Note 4也有同样的问题。在我的情况下,我使用了ADB输入事件,它现在工作正常。
driver.pressKeyCode(„67”); // Android delete KEY_EVENT, driver is Android Driver
String command = "adb shell input text abc123@gmail.com";
Process result = Runtime.getRuntime().exec(command);