使用下面的代码,它在浏览器 URL 中发送密钥,而不是在谷歌搜索文本框中。我想使用大写键盘事件在谷歌搜索文本字段中输入文本。
driver.get(https://www.google.co.in/);
Actions builder = new Actions(driver);
Action enterText = builder.click(driver.findElement(By.
cssSelector("input[type=text]"))).
keyDown(Keys.SHIFT).
sendKeys("my gmail").
keyUp(Keys.SHIFT).
build();
enterText.perform();