WebDriver无法解析为某种类型

时间:2018-01-04 20:15:48

标签: selenium webdriver selenium-chromedriver

尝试设置Selenium但无法获取Eclipse中的代码来调用浏览器。我有以下代码:

package Basics;

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;

public class Browserinvocation {

    public static void main(String[] args) {
        // TODO Auto-generated method stub

        WebDriver driver=new ChromeDriver();

    }

}

我收到以下错误:

Exception in thread "main" java.lang.Error: Unresolved compilation problems: 
    WebDriver cannot be resolved to a type
    ChromeDriver cannot be resolved to a type

    at Basics.Browserinvocation.main(Browserinvocation.java:11)

在StackOverflow上有一个类似的问题,解决方案是在“Lib”文件夹之外有2个没有添加的Jars。我也错过了那些,但即使添加了这些罐子之后,我仍然收到同样的错误

此外,当我将鼠标悬停在“org.openqa.selenium.WebDriver;”上时,我收到以下消息:

The import org.openqa cannot be resolved

1 个答案:

答案 0 :(得分:-1)

我解决了它在我的java项目库中添加了外部jar client-combined-3.2.0-nodeps.jar,之前没有添加它,因为它位于根文件夹中。