Untitled

 avatar
unknown
plain_text
a month ago
389 B
5
Indexable
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;

public class LoginPage extends BasePage {
    public LoginPage(WebDriver driver) {
        super(driver);
    }

    @FindBy(css = "#input-email")
    private WebElement emailInput;

    public void setEmail(String email) {
        emailInput.sendKeys(email);
    }
}
Editor is loading...
Leave a Comment