Selenium Grid and Hub working perfectly fine and running accordingly, but I'm unable to run the tests on https://i.stack.imgur.com/4g1x1.png and selenium-standalone v2.53.
My grid console:
My error:
public class testSample {
@Test
public void testLogin() throws MalformedURLException
{
DesiredCapabilities cap= DesiredCapabilities.internetExplorer();
cap.setBrowserName("iexplore");
cap.setPlatform(Platform.WINDOWS);
RemoteWebDriver driver= new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"),cap);
driver.get("http://demo.bigideasmath.com/BIM/login");
driver.findElement(By.xpath(".//*[@id='loginForm']/div[1]/div/input")).sendKeys("aaaaa");
driver.findElement(By.xpath(".//*[@id='loginForm']/div[2]/div[1]/input")).sendKeys("bcbcb");
driver.quit();
}
}