TA的每日心情 | 奋斗 2017-9-4 10:27 |
---|
签到天数: 1 天 连续签到: 1 天 [LV.1]测试小兵
|
Selenium3.4版本,Java运行环境是1.8,工具是myeclipse
使用sendkeys方法时,报错了。报错信息:The method sendKeys(CharSequence[]) from the type WebElement refers to the missing type CharSequence
代码如下:
public class Demo04 {
public static void main(String[] args) {
System.out.println("1111");
System.setProperty("webdriver.chrome.driver",
".\\tool\\chromedriver.exe");
WebDriver wb = new ChromeDriver();
wb.manage().timeouts().implicitlyWait(3, TimeUnit.SECONDS);
wb.get("https://www.baidu.com");
WebElement we = wb.findElement(By.id("kw"));
WebElement we1 = wb.findElement(By.id("su"));
we.sendKeys(“ceshi”);//换成wb.findElement(By.id("kw")).sendkeys(new String[]{"ceshi"});也是一样报错
we1.click();
}
}
说明:把运行环境换成1.7,语句是不报错了,运行时报错。提示不支持52.0(1.7版本)。
请问,有人碰到我这种情况吗?可有好的解决方案?跪求。。。 |
|