如何使用硒的webdriver @FindBy注释(How to use @FindBy annot

2019-09-02 18:02发布

我想知道有什么错我的代码,因为当我尝试测试我的代码,我仍然不会什么。

public class SeleniumTest {

private WebDriver driver;
private String nome;
private String idade;

@FindBy(id = "j_idt5:nome")
private WebElement inputNome;

@FindBy(id = "j_idt5:idade")
private WebElement inputIdade;

@BeforeClass
public void criarDriver() throws InterruptedException {

    driver = new FirefoxDriver();
    driver.get("http://localhost:8080/SeleniumWeb/index.xhtml");
    PageFactory.initElements(driver, this);

}

@Test(priority = 0)
public void digitarTexto() {

    inputNome.sendKeys("Diego");
    inputIdade.sendKeys("29");

}

@Test(priority = 1)
public void verificaPreenchimento() {

    nome = inputNome.getAttribute("value");
    assertTrue(nome.length() > 0);

    idade = inputIdade.getAttribute("value");
    assertTrue(idade.length() > 0);
}

@AfterClass
public void fecharDriver() {

    driver.close();

}

}

I'm使用Selenium WebDriverTestNG ,我试图测试在某些条目JSF页面。

Answer 1:

有用于@BeforeClass一个difinition:

@BeforeClass
Run before all the tests in a class

@FindBy是“执行”每次你打电话的上课时间。

其实你@FindBy是之前称为@BeforeClass所以它不会工作。

我可以建议你的是保持@FindBy但让我们开始使用PageObject模式。

你让你的测试的页面,并创建另一个类的对象,如:

public class PageObject{
  @FindBy(id = "j_idt5:nome")
  private WebElement inputNome;

  @FindBy(id = "j_idt5:idade")
  private WebElement inputIdade;

  // getters
  public WebElement getInputNome(){
    return inputNome;
  }

  public WebElement getInputIdade(){
    return inputIdade;
  }

  // add some tools for your objects like wait etc
} 

你SeleniumTest'll看起来像这样:

@Page
PageObject testpage;

@Test(priority = 0)
public void digitarTexto() {

  WebElement inputNome = testpage.getInputNome();
  WebElement inputIdade = testpage.getInputIdade();

  inputNome.sendKeys("Diego");
  inputIdade.sendKeys("29");
}
// etc

如果你要使用这个告诉我这是怎么回事。



文章来源: How to use @FindBy annotation in Selenium WebDriver