在等待使用Selenium Wedriver定位的元素存在10秒后超时

时间:2016-09-22 08:52:04

标签: java selenium selenium-webdriver

enter image description here

定位器是正确的,但在Selenium Webdriver中运行时,我收到同样的错误。 我使用了不同类型的等待,如隐式等待,显式等待和等待元素存在

WebElement myDynamicElement = (new WebDriverWait(driver, 10)).until(ExpectedConditions.presenceOfElementLocated(By.xp‌​ath("//div[@id = 'bs-example-navbar-collapse-1']/ul[2]/li[1]"))); 
driver.findElement(By.xpath("//div[@id = 'bs-example-navbar-collapse-1']/ul[2]/li[1]")).click();

2 个答案:

答案 0 :(得分:0)

使用' visibilityOfElementLocated(定位器)'而不是使用' presenceOfElementLocated(按定位器)'。 ' presenceOfElementLocated(通过定位器)'仅确认DOM中元素的存在,并不意味着元素可见或启用。但是如果你使用' visibilityOfElementLocated(通过定位器)',那么它确认元素存在于DOM中以及可见。如果您点击该元素,您还可以使用' elementToBeClickable(按定位器)';

答案 1 :(得分:0)

  

其Shine.com,点击右上角的登录链接

您应该尝试使用By.linkText()点击Login按钮,如下所示: -

driver.get("http://www.shine.com/");

WebDriverWait wait = new WebDriverWait(driver, 10);     
wait.until(ExpectedConditions.elementToBeClickable(By.linkText("Login"))).click();