NoSuchMethodError: org.openqa.selenium.os.CommandLine.findExecutable(Ljava/lang/String;)Ljava/lang/String; while launching Chrome using SoapUI
I'm trying to launch the selenium scripts from SoapUI 5.2.1 tool with the following launching script: System.setProperty("webdriver.chrome.driver","D:\\SoapUI-5.2.1\\bin\\ext\\chromedriver.exe") WebDriver driver = new ChromeDriver(); driver.manage().window().maximize(); driver.get("https://www.MyUrl.com") driver.manage().timeouts().implicitlyWait(120,TimeUnit.SECONDS); I have kept the following selenium dependency file in SoapUI/bin/ext folder - chromedriver 2.36 - selenium-server-standalone-3.4.0.jar - selenium-chrome-driver-2.3.1.jar But I'm getting the following error message while running