Selenium 是否适用于 Java 16?罐子都在那里,但进口不起作用

问题描述

从相对初学者的 Java 背景中学习 Selenium。按照所有指南下载 JAR 并将它们导入 Eclipse,但它们对代码功能没有任何影响。在网上上下搜索,但找不到任何东西,除非我快疯了。附上显示引用库和代码的屏幕截图:code and jars

代码本身是:

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class Firefox {

    public static void main(String[] args) {
        // Todo Auto-generated method stub
        
        System.setProperty("webdriver.gecko.driver","C:\\geckodriver.exe");
        WebDriver driver = new FirefoxDriver();
        //comment the above 2 lines and uncomment below 2 lines to use Chrome
        //System.setProperty("webdriver.chrome.driver","G:\\chromedriver.exe");
        //WebDriver driver = new ChromeDriver();
        
        String baseUrl = "http://demo.guru99.com/test/newtours/";
        String expectedTitle = "Welcome: Mercury Tours";
        String actualTitle = "";

        // launch Fire fox and direct it to the Base URL
        driver.get(baseUrl);

        // get the actual value of the title
        actualTitle = driver.getTitle();

        /*
         * compare the actual title of the page with the expected one and print
         * the result as "Passed" or "Failed"
         */
        if (actualTitle.contentEquals(expectedTitle)){
            System.out.println("Test Passed!");
        } else {
            System.out.println("Test Failed");
        }
       
        //close Fire fox
        driver.close();

    }

}

解决方法

与Java无关,在我看来你下载错了库,应该是Selenium Client而不是Selenium Server

enter image description here

您可以在这里下载,然后选择您想要的版本。 https://www.selenium.dev/downloads/