java.lang.NoSuchMethodError:com.google.common.io.Closeables.closeQuietly(Ljava/io/Closeable;)V

Nit*_*ani 7 java selenium

我是selenium的新手.我在使用Selenium WebDriver时遇到了一些问题.

我想用Selenium WebDriver打开网站,比如www.filpkart.com

我的守则

package com.screen;


import org.openqa.selenium.*;
import org.openqa.selenium.firefox.FirefoxDriver;


public class HTMLParseExample {


 public static void main(String[] args) {

      WebDriver driver = new FirefoxDriver();


      //Launch website
      driver.get("http://www.flipkart.com");
      driver.close();


   }
  }
Run Code Online (Sandbox Code Playgroud)

我正面临下面提到的这个错误.

Exception in thread "main" java.lang.NoSuchMethodError: com.google.common.io.Closeables.closeQuietly(Ljava/io/Closeable;)V
at org.openqa.selenium.firefox.internal.ClasspathExtension.writeTo(ClasspathExtension.java:60)
at org.openqa.selenium.firefox.FirefoxProfile.installExtensions(FirefoxProfile.java:504)
at org.openqa.selenium.firefox.FirefoxProfile.layoutOnDisk(FirefoxProfile.java:482)
at org.openqa.selenium.firefox.internal.NewProfileExtensionConnection.start(NewProfileExtensionConnection.java:76)
at org.openqa.selenium.firefox.FirefoxDriver.startClient(FirefoxDriver.java:142)
at org.openqa.selenium.remote.RemoteWebDriver.<init>(RemoteWebDriver.java:80)
at org.openqa.selenium.firefox.FirefoxDriver.<init>(FirefoxDriver.java:121)
at org.openqa.selenium.firefox.FirefoxDriver.<init>(FirefoxDriver.java:77)
at com.screen.HTMLParseExample.main(HTMLParseExample.java:15)
Run Code Online (Sandbox Code Playgroud)

帮助我提前谢谢.

Jen*_*ens 2

看起来您的 selemenium 和com.google.guava. 该方法存在,但在版本15中已弃用。但在版本19中它不再存在。