引起:org.openqa.selenium.NoSuchElementException:元素不可用

时间:2013-06-13 09:02:23

标签: selenium-webdriver thucydides

我使用Selenium Webdriver + Thucydides。当我尝试使用复选框(任何状态:isEnabled(),isDisplayed(),isSelected())时,将发生错误。我尝试了不同的定位器:id,name,xpath。该复选框在页面源中可用。页面上的所有其他元素都能正常工作。我使用DisplayedElementLocatorFactory。

我的定位器:

    @FindBy(id = "remember")
//  @FindBy(xpath = ".//*[@type='checkbox']")
//  @FindBy(name = "_remember_me")
    protected WebElement rememberMeCheckbox;

HTML-source of checkbox:

<label for="remember" class="remember"><div class="checker" id="uniform-remember"><span><input type="checkbox" value="1" name="_remember_me" id="remember" /></span></div>Remember me</label>

我的功能:

public void isLoginFormLoadedCorrectly()
{
        String pageSource = driver.getPageSource();
        System.out.println(pageSource);

        String errorMessage = "";

        if (!loginInput.isDisplayed())
            errorMessage += "Username field is not displayed or not found\r\n";
        if (!passwordInput.isDisplayed())
            errorMessage += "Password field is not displayed or not found\r\n";
        if (!submitButton.isDisplayed())
            errorMessage += "Submit button is not displayed or not found\r\n";
        if (!passwordRecoveryLink.isDisplayed())
            errorMessage += "Password recovery link is not displayed or not found\r\n";
        if (!rememberMeCheckbox.isDisplayed())
            errorMessage += "Remember me check-box is not displayed or not found\r\n";
    //    if (rememberMeCheckbox.isSelected())
    //        errorMessage += "Remember me check-box is selected\r\n";

        assertThat(errorMessage, errorMessage.equals(""), is(true));
    }

错误: net.thucydides.core.webdriver.WebdriverAssertionError:org.openqa.selenium.NoSuchElementException:30秒后超时。无法找到元素 引起:org.openqa.selenium.NoSuchElementException:30秒后超时。无法找到元素 引起:org.openqa.selenium.NoSuchElementException:元素不可用

2 个答案:

答案 0 :(得分:1)

我尝试点击复选框时出现同样的错误。 我点击了标记为<span>的元素,而不是<input>

,解决了这个问题

在您的示例中,例如,可以找到它(比复选框高一级的元素):

@FindBy(xpath = ".//*[@type='checkbox']/..")

答案 1 :(得分:0)

我无法重现您的问题:

@RunWith(ThucydidesRunner.class)
public class VerificationTest {

    @Managed
    public WebDriver driver;

    @ManagedPages
    public Pages pages;

    @Test
    public void testCheckbox(){
        CheckBoxPage pg = pages.get(CheckBoxPage.class);
        pg.openAt("http://www.echoecho.com/htmlforms09.htm");

        assertTrue("checkbox is displayed", pg.ckbxElement.isDisplayed());
        assertTrue("checkbox is selected", pg.ckbxElement.isSelected());    
    }
}

,其中

public class CheckBoxPage extends PageObject{

    @FindBy(css = ".table8 input:checked")
    public WebElement ckbxElement;

    public CheckBoxPage(WebDriver driver) {
        super(driver);
    }

}

同时使用FindByorg.openqa.selenium.support.FindBynet.thucydides.core.annotations.findby.FindBy

由于所有其他元素都有用,所以确保:

  1. 它不在iframe
  2. htlm是正确的