WebDriver Exception org.openqa.selenium.NoSuchElementException

时间:2016-03-26 16:37:38

标签: java selenium-webdriver

当我尝试使用WebDriver打开与本地服务器的链接时,我收到此错误

  

org.openqa.selenium.NoSuchElementException:无法找到元素:   phpmyamin打开

但是当我尝试使用XPath点击链接时,错误就会消失。 最有趣的是网站运行正常,只有当它在本地服务器上运行时才会发生错误。 在Selenium IDE对面,它可以正常工作

WebDriver driver = new FirefoxDriver();
driver.get("http://127.0.0.1/Tools/phpmyadmin/");
driver.manage().timeouts().implicitlyWait(2, TimeUnit.SECONDS);

WebElement link = driver.findElement(By.xpath("//ul[@id='databaseList']/li/a"));
link.click();

0 个答案:

没有答案