Skip to content

EvaRomana05/selenium-bookshopbd.com-website-automation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Selenium Java Web Automation

Check out Bookshopbd.com website automation.

TestCase 01: Automation Steps:

  1.  Visit this site
    
  2.  Click  লেখক from the menu
    
  3.  Select হুমায়ুন আহমেদ
    
  4.  FILTER BY AUTHORS section select “হুমায়ুন আহমেদ” from the dropdown
    
  5.  Add to cart book
    
  6.  Click Confirm Order Button
    
  7.  Provide Checkout Details
    
  8.  Click Place Order Button
    

This project using the following languages and frameworks:

  • Java 11 as the programming language
  • TestNG as the UnitTest framework to support the test creation
  • Selenium WebDriver as the web browser automation framework using the Java binding

Test architecture

We know that any automation project starting with a good test architecture. This project can be your initial test architecture for a faster start. You will see the following items in this architecture:

Do you have any other items to add to this test architecture? Please do a pull request or open an issue to discuss.

Page Objects pattern

I will not explain the Page Object pattern because you can find a lot of good explanations and examples on the internet. Instead, I will explain what exactly about page objects I'm using in this project.

AbstractPageObject

This class has a protected constructor to remove the necessity to init the elements using the Page Factory. Also, it sets the timeout from the timeout property value located on general.properties file.

All the Page Object classes should extend the AbstractPageObject. It also tries to remove the driver object from the Page Object class as much as possible.