selenium webdriver学习遇到的问题
import org.openqa.selenium.By;import org.openqa.selenium.WebDriver;import org.openqa.selenium.WebElement;import org.openqa.selenium.firefox.FirefoxDriver;public class FirstExampe {public static void main(String[] args) {WebDriver driver = new FirefoxDriver(); driver.get("http://www.google.com.hk"); WebElement element = driver.findElement(By.name("q")); element.sendKeys("hello Selenium!"); element.submit(); try {Thread.sleep(3000);} catch (InterruptedException e) {e.printStackTrace();} System.out.println("Page title is: " + driver.getTitle()); driver.quit();}}
?正常运行后,这几行代码将会打开firefox浏览器,然后转跳到google首页。在搜索框中输入hello? Selenium并提交搜索结果。等待3秒后会在命令行打印出当前页面的title,输出如下:
Page title is: hello Selenium! - Google 搜寻
chrome浏览器完美通过!代码没有问题
?但是,问题来了----------
使用firefox时,可以打开浏览器,但是不能跳转,上网搜了一圈说是selenium的jar要在2.24以及以上,我的确实是2.25的,没问题啊,不该出现这种问题的,最后官网下载最新版的2.33版的jar包,问题解决
?
备注:
使用chrome时需要使用chromedriver.exe
java代码中添加
System.setProperty("webdriver.chrome.driver","chromedriver.exe");WebDriver webDriver = new ChromeDriver();
?