Skip to content

Make Selenium Easy

And Keep It That Way

  • Home
  • Share
  • Toggle search form

Page Factory In Selenium Webdriver: Inbuilt Page Object Model Of Selenium

Posted on 02/19/2025 By admin

Hello Folks,

We have seen below topics as of now:

  1. Introduction of Page Object Model
  2. Plain Page Object Model

In this post we will see inbuilt page object model in selenium webdriver.

Selenium webdriver has inbuilt Page Object Model called Page Factory. It provides @FindBy annotation to create object repository.

What is @FindBy annotation?

  • Annotations in java are used to provide additional information.
  • @FindBy annotation is used to locate web element using any locators available in selenium webdriver (id, xpath, css etc).
  • It is used to mark a field on a Page Object to indicate an alternative mechanism for locating the element or a list of elements.
  • It is used in conjunction with PageFactory this allows users to quickly and easily create PageObjects.

Syntax: You can use @FindBy annotation in two ways:

@FindBy(LocatorStrategy=”Locatorvalue”) WebElement elementName;

Where LocatorStrategy may be any one from Id, name, className, tagName, css, xpath, linkText, partialLinkText.

Example:

@FindBy(id=”someID”) @FindBy(name=”someName”) @FindBy(className=”someClassName”) @FindBy(tagName=”sometagName”) @FindBy(xpath=”someXpath”) @FindBy(css=”someCSS”) @FindBy(linkText=”someLinktext”)

@FindBy(partialLinkText=”somePartialLinktext”)

Uncategorized

Post navigation

Previous Post: Frequently Asked Java Program 02: Java Program to Check if Any String is Palindrome Without Using Reverse Method
Next Post: Postman tutorial

Related Posts

May 13, 2018 – Make Selenium Easy Uncategorized
How to Query JSON using JSONPath? Uncategorized
selenium interview question Uncategorized
January 17, 2019 – Make Selenium Easy Uncategorized
Hierarchy of Selenium Classes and Interfaces – Make Selenium Easy Uncategorized
JSON with JSONPath Uncategorized

Recent Posts

  • Getting Started with Selenium 4: What Is New and How to Upgrade from Selenium 3
  • Manual Testing
  • Baby Steps To Become Efficient Selenium-Java Automation Tester
  • Features of Selenium 4.0.0 Release – Java Binding
  • Part 1: Handling Drop-down Created Using SELECT Tag In Selenium

Recent Comments

No comments to show.

Archives

  • April 2026
  • April 2025
  • March 2025
  • February 2025
  • January 2025
  • December 2024
  • November 2024
  • October 2024
  • September 2024
  • August 2024
  • April 2024
  • March 2024
  • February 2024
  • December 2023
  • October 2023
  • August 2023
  • November 2022
  • September 2022
  • August 2022
  • July 2022
  • May 2022
  • March 2022
  • October 2021
  • April 2021
  • March 2021
  • January 2021
  • December 2020
  • October 2020
  • September 2020
  • August 2020
  • June 2020
  • May 2020
  • April 2020
  • March 2020
  • February 2020
  • January 2020
  • December 2019
  • November 2019
  • October 2019
  • September 2019
  • August 2019
  • May 2019
  • December 2018
  • November 2018
  • October 2018
  • September 2018
  • August 2018
  • July 2018
  • January 2018

Categories

  • Getting Started
  • Uncategorized

Copyright © 2026 Make Selenium Easy.

Powered by PressBook Masonry Dark