Я получаю ошибку ниже с моей программой Java: -
Exception in thread "main" java.lang.NoSuchMethodError: org.openqa.selenium.remote.DriverCommand.NEW_SESSION(Lorg/openqa/selenium/Capabilities;)Lorg/openqa/selenium/remote/CommandPayload;
at org.openqa.selenium.remote.RemoteWebDriver.startSession(RemoteWebDriver.java:211)
at org.openqa.selenium.remote.RemoteWebDriver.<init>(RemoteWebDriver.java:131)
at org.openqa.selenium.chrome.ChromeDriver.<init>(ChromeDriver.java:181)
at org.openqa.selenium.chrome.ChromeDriver.<init>(ChromeDriver.java:147)
at automation.flyYatra.mainTest(flyYatra.java:42)
at automation.flyYatra.main(flyYatra.java:243)
Попытался добавить последние файлы jar, как видно на снимке ниже, но не смог их разрешить. Любая помощь, пожалуйста?
автоматизация упаковки;
public class flyYatra {
public void mainTest() throws IOException, InterruptedException, WebDriverException, SocketException {
System.setProperty("webdriver.chrome.driver", "C:\\Users\\Downloads\\Driver\\chromedriver.exe");
ChromeOptions options = new ChromeOptions();
options.addArguments("--incognito");
DesiredCapabilities capabilities = DesiredCapabilities.chrome();
capabilities.setCapability(ChromeOptions.CAPABILITY, options);
WebDriver driver = new ChromeDriver(capabilities);
driver.manage().timeouts().implicitlyWait(5, TimeUnit.SECONDS);
Пробовал с различными версиями jar-файлов, но не смог решить