selenium的问题,我写的一个脚本就是简单的打开百度,输入一个关键字进行搜索,但...
selenium的问题,我写的一个脚本就是简单的打开百度,输入一个关键字进行搜索,但是代码执行后,调出火狐浏览器后就不执行任何下一步操作了package com.kaka.jase;import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.*;
public class Baidu {
public static void main(String[] args) {
System.out.println("srart selenium");
WebDriver driver = new FirefoxDriver();
driver.get("http://www.baidu.com/");
driver.findElement(By.id("kw")).sendKeys("selenium java");
driver.findElement(By.id("su")).click();
driver.close();
}
}
21行有问题,后面应该是.send_keys("selenium java"); 打印出来,看看执行到那步了 检查驱动的版本匹配 看下驱动版本有没有装 浏览器与版本驱动不匹配吧?
页:
[1]