Forum Discussion
Also, someone posted a workaround on - https://github.com/seleniumhq/selenium/issues/388
ProxySelector proxy = ProxySelector.getDefault();
WsdlProject wsdlProject = new WsdlProject("");
ProxySelector.setDefault(proxy);
WebDriver driver = new FirefoxDriver();
Which does not seem to work either. Possible bug in SOAPUI? Does SOAPUI supports selenium?
Hi,
SoapUI is not designed to run Selenium as part of its standard product suite, so it cannot really be considered a bug.
However, I think I've got your script to run by adding the following list of jars:
commons-exec-1.3.jar
gson-2.8.0.jar
selenium-api-2.53.1.jar
selenium-chrome-driver-2.53.1.jar
selenium-java-2.53.1.jar
selenium-remote-driver-2.53.1.jar
selenium-server-2.53.1.jar
I also needed to update my Chrome driver to this one:
http://chromedriver.storage.googleapis.com/index.html?path=2.25/
The script now runs, I can see chrome start, and it completes without error or output.
Can you give it a shot please?
regards,
Rupert