我一直在尝试设置Selenium并编写我的第一个代码,但无济于事。我正在使用Selenium Java版本3.141.59,任何信息均适用于以前的版本。
我注意到,较旧的版本还有许多其他jar文件,但是我是否下载并安装该版本?如果是,是否存在有效的链接?因为我在官方硒site上找不到。
以下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)
我做了什么,但没有任何效果: