51Testing软件测试论坛

标题: selenium 3.3.1导入eclipse时报错 [打印本页]

作者: manson456    时间: 2017-3-21 09:08
标题: selenium 3.3.1导入eclipse时报错
     我将最新的selenium-java-3.3.1包导入eclipse想测试一下能否运行,但却总是报错:The import org.openqa.selenium.firefox.FirefoxDriver cannot be resolved
     我上网查了很多,确认我的火狐版本52和selenium3.3.1都是最新的,也有按正常流程引入jar包,还是报错,我的代码如下
     求助各位大神,怎么解决这个问题?我琢磨了一个礼拜了,万分感谢!
PS: 我发现我的引入的包下 org.openqa.selenium.firefox.FirefoxDriver类什么都没有,不像比如By类有内容,是不是这个有问题?

  1. package com.selenium.glen;

  2. import org.openqa.selenium.By;
  3. import org.openqa.selenium.WebDriver;
  4. import org.openqa.selenium.WebElement;
  5. import org.openqa.selenium.firefox.FirefoxDriver;
  6. public class TestHelloWorld {
  7.         public static void main(String[] args) {
  8.         System.setProperty("webdriver.firefox.bin", "D:\\worksoft\\firefox\\firefox.exe");
  9.         //System.setProperty("webdriver.firefox.marionette",
  10.         //"D:\\worksoft\\selenium2.0\\selenium-java-3.3.1\\geckodriver.exe");
  11.         //driver = new FirefoxDriver();
  12.         //driver.get("http://stackoverflow.com/");
  13.         WebDriver driver=new FirefoxDriver();
  14.         driver.get("https://www.baidu.com/");
  15.         
  16.         driver.manage().window().maximize();
  17.         
  18.         WebElement txtbox=driver.findElement(By.name("wd"));
  19.         txtbox.sendKeys("danmei");
  20.         
  21.         WebElement btn=driver.findElement(By.id("su"));
  22.         btn.click();
  23.         
  24.         driver.close();
  25.                
  26.         }
  27. }


复制代码



作者: 清晨一缕阳光    时间: 2017-3-21 12:25
selenium3使用ff浏览器需要下载ff的驱动。
作者: jingzizx    时间: 2017-5-7 07:52





欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2