MachinePublishers / jBrowserDriver

A programmable, embeddable web browser driver compatible with the Selenium WebDriver spec -- headless, WebKit-based, pure Java
Other
809 stars 143 forks source link

Driver info: driver.version: unknown #272

Open shakeelgit opened 7 years ago

shakeelgit commented 7 years ago

Hello guys, can you help me i am getting an error (Driver info: driver.version: unknown) while doing selenium grid Below is the code which I am using:- @Test public void test1() throws MalformedURLException{

DesiredCapabilities cap = new DesiredCapabilities();
cap.setPlatform(Platform.WINDOWS);
URL url = new URL ("http://localhost:4444/grid/console");
 WebDriver driver=new RemoteWebDriver(url, cap); 
 driver.get("http://www.ayeshaclasses.com");

System.out.println("Title is "+driver.getTitle()); driver.quit();

}