selenium-webdriver
Utiliser les annotations @FindBy en Java
Recherche…
Syntaxe
- CLASS_NAME: @FindBy (className = "classname")
- CSS: @FindBy (css = "css")
- ID: @FindBy (id = "id")
- ID_OR_NAME: @FindBy (comment = How.ID_OR_NAME, en utilisant = "idOrName")
- LINK_TEXT: @FindBy (linkText = "text")
- NOM: @FindBy (name = "name")
- PARTIAL_LINK_TEXT: @FindBy (partialLinkText = "text")
- TAG_NAME: @FindBy (tagName = "tagname")
- XPATH: @FindBy (xpath = "xpath")
Remarques
Notez qu'il existe deux manières d'utiliser l'annotation. Exemples:
@FindBy(id = "id")
et
@FindBy(how = How.ID, using ="id")
sont égaux et recherchent tous les deux leur identifiant. Dans le cas de ID_OR_NAME
vous ne pouvez utiliser que
@FindBy(how = How.ID_OR_NAME, using ="idOrName")
PageFactory.initElements()
doit être utilisé après l'instanciation de l'objet page pour rechercher des éléments marqués avec @FindBy
annotation @FindBy
.
Exemple de base
Supposons que nous utilisons un modèle d'objet de page . Classe d'objet page:
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.support.FindBy;
import org.openqa.selenium.support.PageFactory;
public class LoginPage {
@FindBy(id="loginInput") //method used to find WebElement, in that case Id
WebElement loginTextbox;
@FindBy(id="passwordInput")
WebElement passwordTextBox;
//xpath example:
@FindBy(xpath="//form[@id='loginForm']/button(contains(., 'Login')")
WebElement loginButton;
public void login(String username, String password){
// login method prepared according to Page Object Pattern
loginTextbox.sendKeys(username);
passwordTextBox.sendKeys(password);
loginButton.click();
// because WebElements were declared with @FindBy, we can use them without
// driver.find() method
}
}
Et classe de tests:
class Tests{
public static void main(String[] args) {
WebDriver driver = new FirefoxDriver();
LoginPage loginPage = new LoginPage();
//PageFactory is used to find elements with @FindBy specified
PageFactory.initElements(driver, loginPage);
loginPage.login("user", "pass");
}
}
Il existe peu de méthodes pour trouver les WebElements à l'aide de la section @FindBy - check Syntax.
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow