Currently, I am working on WebDriver to invoke IE browser to run the testing. But I received a NoSuchElementException when I tried to run the simple example bel
NoSuchElementException
Try adding implicitly wait like below. Also as Robert said, your URL should have http://
WebDriver driver = new InternetExplorerDriver(ieCapabilities); driver.manage().timeouts().implicitlyWait(90, TimeUnit.SECONDS);