我是selenium的初学者,使用JDK 8和silenum 2.52正确安装,重复出现此错误。 Cnt继续前进。请帮帮我。
The method sendKeys(CharSequence[]) in the type WebElement is not applicable for the arguments (String)
Java问题
答案 0 :(得分:0)
试
driver.findElement(By.name("q")).sendKeys("Cheese!");
或
driver.findElement(By.id("lst-ib")).sendKeys("Cheese!");