0% found this document useful (0 votes)
3 views4 pages

Java Selenium

The document outlines the development of an automation testing framework for the e-commerce website bstackdemo.com using Java and Selenium. It details the project objectives, tools and technologies utilized, framework architecture, and specific test modules covered, including login, cart, and checkout functionalities. Additionally, it includes sample code structure, execution methods, and reporting mechanisms implemented in the project.

Uploaded by

ragukul
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views4 pages

Java Selenium

The document outlines the development of an automation testing framework for the e-commerce website bstackdemo.com using Java and Selenium. It details the project objectives, tools and technologies utilized, framework architecture, and specific test modules covered, including login, cart, and checkout functionalities. Additionally, it includes sample code structure, execution methods, and reporting mechanisms implemented in the project.

Uploaded by

ragukul
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Java Selenium Automation for bstackdemo.

com

1. Capstone Project Title


Automation Testing Framework for [Link] using Java and Selenium

2. Domain
E-Commerce Web Application

3. Application Under Test (AUT)


Website: [Link]

Description: [Link] is a sample e-commerce application provided by


BrowserStack to demonstrate cross-browser testing. It includes features such as user login,
product catalog, filtering, adding items to the cart, and order placement.

4. Project Objective
To design and implement a modular and scalable automation testing framework using Java,
Selenium WebDriver, and TestNG for testing the core functionalities of the [Link]
e-commerce platform.

5. Tools and Technologies Used


- Java: Programming Language

- Selenium WebDriver: Browser Automation

- TestNG: Test Execution and Reporting

- Maven: Project Build and Dependency Management

- ExtentReports: Customized Test Reporting

- Git/GitHub: Version Control


6. Framework Architecture
Design Pattern: Page Object Model (POM)

Components:

- [Link] – Initializes WebDriver and loads configs

- Page Classes – LoginPage, ProductPage, CartPage, CheckoutPage

- Utilities – ConfigReader, WebDriverFactory, WaitUtils

- Test Cases – LoginTest, AddToCartTest, CheckoutTest

- [Link] – Test suite configuration

- Reports – ExtentReports integration

7. Modules Covered
- Login: Validate valid and invalid user login

- Product Listing: Verify product details and filters

- Add to Cart: Verify items added to cart

- Cart Verification: Ensure cart shows correct quantity and price

- Checkout: Validate order placement functionality

8. Automate Test Case Scenarios


⬛ Login Tests

- TC_001: Login with valid credentials (username: demouser, password: testingisfun99)

- TC_002: Login with invalid credentials

- TC_003: Login with empty username/password

. Cart Tests

- TC_004: Add single item to cart

- TC_005: Add multiple items to cart and verify cart count

- TC_006: Remove item from cart

—- Checkout Tests
.
- TC_007: Place order with valid details

- TC_008: Checkout flow without adding items (negative test)

9. Sample Code Structure


src/

├── main/

│ └── java/

│ └── pages/

│ ├── [Link]

│ ├── [Link]

│ ├── [Link]

│ └── [Link]

│ └── utils/

│ ├── [Link]

│ ├── [Link]

│ └── [Link]

├── test/

│ └── java/

│ ├── tests/

│ │ ├── [Link]

│ │ ├── [Link]

│ │ └── [Link]

│ └── [Link]

10. Execution
Command Line (Maven):

mvn clean test


Using TestNG XML:

Run [Link] from your IDE or via Maven Surefire plugin.

11. Reporting
ExtentReports used for HTML-based graphical reports.

TestNG default reports generated under test-output/ directory.

You might also like