@FindBy annotations in Selenium Java - Build an Automation Script
import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; import org.openqa.selenium.support.PageFactory; import org.openqa.selenium.support.ui.ExpectedConditions; import org.openqa.selenium.support.ui.WebDriverWait; import org.testng.Assert; import org.testng.annotations.AfterClass; import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; import java.time.Duration; public class LoginPage { private WebDriver driver; private WebDriverWait wait; @FindBy(id = "email") private WebElement emailInput; @FindBy(id = "password") private WebElement passwordInput; @FindBy(id = "loginBtn") private WebElement loginButton; public LoginPage(WebDriver driver) { this.driver = driver; this.wait = new WebDriverWait(driver, Duration.ofSeconds(10)); PageFactory.initElements(driver, this); } public void enterEmail(String email) { wait.until(ExpectedConditions.visibilityOf(emailInput)); emailInput.clear(); emailInput.sendKeys(email); } public void enterPassword(String password) { wait.until(ExpectedConditions.visibilityOf(passwordInput)); passwordInput.clear(); passwordInput.sendKeys(password); } public void clickLogin() { wait.until(ExpectedConditions.elementToBeClickable(loginButton)); loginButton.click(); } } public class LoginTest { private WebDriver driver; private LoginPage loginPage; @BeforeClass public void setUp() { // Initialize WebDriver (e.g., ChromeDriver) here driver = new org.openqa.selenium.chrome.ChromeDriver(); driver.manage().window().maximize(); driver.get("https://example.com/login"); loginPage = new LoginPage(driver); } @Test public void testSuccessfulLogin() { loginPage.enterEmail("user@example.com"); loginPage.enterPassword("Password123!"); loginPage.clickLogin(); WebDriverWait wait = new WebDriverWait(driver, Duration.ofSeconds(10)); wait.until(ExpectedConditions.urlContains("/dashboard")); String currentUrl = driver.getCurrentUrl(); Assert.assertTrue(currentUrl.contains("/dashboard"), "URL should contain '/dashboard' after login"); } @AfterClass public void tearDown() { if (driver != null) { driver.quit(); } } }
This code uses the @FindBy annotation to locate the email input, password input, and login button elements on the login page. The LoginPage class represents the login page using the Page Object Model pattern, which helps keep the code organized and reusable.
In the LoginTest class, the test opens the browser, navigates to the login page, and uses the LoginPage methods to enter credentials and click the login button. It then waits explicitly for the URL to contain '/dashboard' to confirm successful login. Finally, it asserts that the URL is correct.
Explicit waits ensure the test waits for elements to be ready before interacting, avoiding flaky tests. The test cleans up by closing the browser after running.
Now add data-driven testing with 3 different sets of login credentials (valid and invalid) using TestNG data provider.