繁体   English   中英

WebDriver 和 ChromeDriver:无法修复 org/json/JSONException 错误

[英]WebDriver and ChromeDriver: Unable to fix org/json/JSONException error

我是使用 Selenium WebDriver 的新手。 我正在尝试使用 ChromeDriver,以下是我的代码:

public class WebScraper  {
    public WebScraper() {

    }

    public WebDriver driver = new ChromeDriver();

    public void openTestSite() {
        driver.navigate().to("https://google.com");
    }


    public void enter(String word) {

         WebElement query_editbox = 
         driver.findElement(By.id("query")); 
         query_editbox.sendKeys(word);
         query_editbox.sendKeys(Keys.RETURN);

    }

//    public void getText()  {
//        //List<WebElement> searchResults = 
//        driver.findElements(By.xpath("//div[@id='mid']/div")); 
//        // Writer writer = new BufferedWriter(new 
//        OutputStreamWriter(new FileOutputStream("status.txt"), 
//        "utf-8"));
//        //int[] index = {0};
//
//    WebElement result=driver.findElement(By.id("mid"));
//    System.out.println(result.getText());
//}

public static void main(String[] args) throws IOException  {
    System.setProperty("webdriver.chrome.driver", "chromedriver");        
    System.out.println("Hello");

    WebScraper webScraper = new WebScraper();
    webSrcapper.openTestSite();
    webSrcapper.enter("avoir");
    //webSrcapper.getText();
    System.out.println("Hello");

}
}

我收到以下错误:

Exception in thread "main" java.lang.NoClassDefFoundError: org/json/JSONException
    at org.openqa.selenium.remote.RemoteWebDriver.init(RemoteWebDriver.java:110)
    at org.openqa.selenium.remote.RemoteWebDriver.<init>(RemoteWebDriver.java:92)
    at org.openqa.selenium.chrome.ChromeDriver.<init>(ChromeDriver.java:144)
    at org.openqa.selenium.chrome.ChromeDriver.<init>(ChromeDriver.java:86)
    at WebScraper.<init>(WebScraper.java:15)
    at WebScraper.main(WebScraper.java:47)
Caused by: java.lang.ClassNotFoundException: org.json.JSONException
    at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:349)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
    ... 6 more

有人可以帮我解决这个问题并告诉我为什么我首先收到这个错误吗?

谢谢!

错误

线程“main”中的异常 java.lang.NoClassDefFoundError: org/json/JSONException

是因为它缺少依赖org.json添加这个https://mvnrepository.com/artifact/org.json/json/20180813

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM