Suche…


Syntax

  • CLASS_NAME: @FindBy (Klassenname = "Klassenname")
  • CSS: @FindBy (css = "css")
  • ID: @FindBy (id = "id")
  • ID_OR_NAME: @FindBy (Wie = Wie.ID_OR_NAME, Verwendung von "idOrName")
  • LINK_TEXT: @FindBy (linkText = "text")
  • NAME: @FindBy (name = "name")
  • PARTIAL_LINK_TEXT: @FindBy (partialLinkText = "text")
  • TAG_NAME: @FindBy (tagName = "tagname")
  • XPATH: @FindBy (xpath = "xpath")

Bemerkungen

Beachten Sie, dass es zwei Möglichkeiten gibt, die Anmerkung zu verwenden. Beispiele:

@FindBy(id = "id")

und

@FindBy(how = How.ID, using  ="id")

sind gleich und beide suchen nach Element anhand ihrer ID. Im Falle von ID_OR_NAME Sie nur verwenden

@FindBy(how = How.ID_OR_NAME, using ="idOrName")

PageFactory.initElements() muss nach der @FindBy Instantiierung verwendet werden, um Elemente zu finden, die mit der Annotation @FindBy markiert @FindBy .

Grundlegendes Beispiel

Nehmen wir an, wir verwenden das Page-Objektmodell . Page Objektklasse:

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
    }
}

Und test klasse:

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");
    }
}

Es gibt einige Methoden, um WebElements mit @FindBy zu finden.



Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow