gpt4 book ai didi

java - 导入外部 jar 但仍然出现 "Cannot be resolved"错误

转载 作者:行者123 更新时间:2023-12-01 17:29:49 25 4
gpt4 key购买 nike

我在 Modulepath 下导入了外部 jar,遵循此 guide 。但与那些 2 相比,我缺少一些在指南中。这可能是我仍然收到这些错误的原因吗?如果是这样,我如何获得这些或我可以在哪里单独下载并导入它?

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

public class First {

public static void main(String[] args) {
// declaration and instantiation of objects/variables
System.setProperty("webdriver.chrome.driver", "C:\\Users\\limje\\JenAutomation\\chromedriver.exe");
WebDriver driver=new ChromeDriver();

// Launch website
driver.navigate().to("http://www.google.com/");

// Click on the search text box and send value
driver.findElement(By.id("lst-ib")).sendKeys("javatpoint tutorials");

// Click on the search button
driver.findElement(By.name("btnK")).click();


}

}

guide screenshot full screen

最佳答案

您面临此问题是因为您需要修复您的 buld 类路径。

使用右键单击项目添加 jar 文件后 --> 属性 --> 单击应用并关闭

enter image description here

  • 从项目中删除所有导入,并将鼠标悬停在代码 WebDriver driver = new ChromeDriver(); 上,然后点击“修复项目设置”。完成后,再次将鼠标悬停在 Webdriver 上并将库导入到您的解决方案中。
  • enter image description here

  • 最后,您的项目如下所示,您必须将应用程序作为 java 应用程序运行
  • enter image description here

    enter image description here

    关于java - 导入外部 jar 但仍然出现 "Cannot be resolved"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61144108/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com