“ WebDriver无法解析为类型” Selenium 3.141.59-安装

时间:2019-03-14 16:16:32

标签: java selenium selenium-webdriver

我一直在尝试设置Selenium并编写我的第一个代码,但无济于事。我正在使用Selenium Java版本3.141.59,任何信息均适用于以前的版本。

我注意到,较旧的版本还有许多其他jar文件,但是我是否下载并安装该版本?如果是,是否存在有效的链接?因为我在官方硒site上找不到。

以下jar文件包含在其中:

  1. (外部libs文件夹)client-combined-3.141.59-sources.jar
  2. (外部libs文件夹)client-combined-3.141.59.jar
  3. byte-buddy-1.8.15.jar
  4. commons-exec-1.3.jar
  5. guava-25.0-jre.jar
  6. okhttp-3.11.0.jar okio-1.14.0.jar
  7. okio-1.14.0.jar

以下是我的代码:

package package1;

import org.openqa.selenium.WebDriver; import org.openqa.selenium.firefox.FirefoxDriver;

public class MyClass { public static void main(String[] args) {

       //Create a new instance of Firefox Browser
       WebDriver driver = new FirefoxDriver();

       //Open the URL in firefox browser
       driver.get("https://www.google.co.in/");

       //Maximize the Browser window
       driver.manage().window().maximize();

       //Get the current page URL and store the value in variable 'str'
       String str = driver.getCurrentUrl();

       //Print the value of variable in the console
       System.out.println("The current URL is " + str);
    System.out.print("Hello World");
} }

我面临的错误是:

  

线程“主”中的异常java.lang.Error:未解决的编译   问题:WebDriver无法解析为FirefoxDriver类型   无法解析为   测试/package1.MyClass.main(MyClass.java:10)

我做了什么,但没有任何效果:

  1. 执行Clean,然后生成代码。
  2. 添加了尝试不同的方法 较旧版本的罐子

0 个答案:

没有答案