This project aims to demonstrate my skills in Automation with Selenium WebDriver using Java as programming language and Cucumber as Behavior Driven Development Framework. Therefore, it is for demonstration purposes. The LUMA website belongs to the author of Software Testing Board which is a community for Software Testing Professionals.
It should be noted that not all the website functionalities were automated, the approach followed was to write test cases at a high level that offered the main functionalities of the application, in their case: add products to cart, buy products, search for products, login and user registration.
The test cases were translated into low level to detail step by step the execution of the test cases. These test cases are grouped by test scenarios, ID, positive/negative, the type of test case (functional) and whether it is automatable or not. Only functional test cases have been considered, therefore performance, usability and any non-functional test cases are out of scope.
The programming language, automation framework, and document object model have been chosen for maintainability purposes and will be described below. The test cases were translated into the Gerkhin language and then automated with the Cucumber tool. The execution of the test cases and the results are shown in later sections. Finally, Jenkins is integrated for continuous integration and continuous deployment.
ID | Test scenario | Test case | Positive / Negative | Type | Automatable |
---|---|---|---|---|---|
LUMA-1 | What's New | Sections from New in Women's can be opened | Yes | Functional | Yes |
LUMA-2 | Sections from New in Men's can be opened | Yes | Functional | Yes | |
LUMA-3 | Search | Women tops can be searched | Yes | Functional | Yes |
LUMA-4 | Women bottoms can be searched | Yes | Functional | Yes | |
LUMA-5 | Men tops can be searched | Yes | Functional | Yes | |
LUMA-6 | Men bottoms can be searched | Yes | Functional | Yes | |
LUMA-7 | No items are displayed when searching non-existing items | No | Functional | Yes | |
LUMA-8 | Purchase | Women accessories can be purchased | Yes | Functional | Yes |
LUMA-9 | Men accessories can be purchased | Yes | Functional | Yes | |
LUMA-10 | Gear accessories can be purchased | Yes | Functional | Yes | |
LUMA-11 | Validate message when there are no items in the shopping | No | Functional | Yes | |
LUMA-12 | Account | User can sign in | Yes | Functional | Yes |
LUMA-13 | User can create an account | Yes | Functional | Yes | |
LUMA-14 | User cannot sign in with incorrect credentials | No | Functional | Yes |
ID | Test case | Test Data | Precondition | Steps | Expected Result |
---|---|---|---|---|---|
LUMA-1 | Sections from New in Women's can be opened | User should have accessed to Luma website | Visit https://magento.softwaretestingboard.com/ | User is redirected to Luma Website | |
1.1 | Click on "What's New" from header | User is redirected to What's New section | |||
1.2 | 1. Hoodies & Swatshirts 2. Jackets |
Click on {Test Data} in New in Women's section | Desired page gets opened | ||
LUMA-2 | Sections from New in Men's can be opened | User should have accessed to Luma website | Visit https://magento.softwaretestingboard.com/ | User is redirected to Luma Website | |
2.1 | Click on "What's New" from header | User is redirected to What's New section | |||
2.2 | 1. Hoodies & Swatshirts 2. Jackets |
Click on {Test Data} in New in Men's section | Desired page gets opened | ||
LUMA-3 | Women tops can be searched | User should have accessed to Luma website | Visit https://magento.softwaretestingboard.com/ | User is redirected to Luma Website | |
3.1 | Search: 1. Jade Yoga Jacket 2. Diva Gym Tee |
Type {Test Data} in search field at the top right-hand corner | A text hint is displayed | ||
3.2 | Click on the displayed text hint | The user is redirected to a new page loaded with items related to the search | |||
LUMA-4 | Women bottoms can be searched | User should have accessed to Luma website | Visit https://magento.softwaretestingboard.com/ | User is redirected to Luma Website | |
4.1 | 1. Portia Capri 2. Artemis Running Short |
Type {Test Data} in search field at the top right-hand corner | A text hint is displayed | ||
4.2 | Click on the displayed text hint | The user is redirected to a new page loaded with items related to the search | |||
LUMA-5 | Men tops can be searched | User should have accessed to Luma website | Visit https://magento.softwaretestingboard.com/ | User is redirected to Luma Website | |
5.1 | Typhon Performance 2. Logan HeatTec |
Type {Test Data} in search field at the top right-hand corner | A text hint is displayed | ||
5.2 | Click on the displayed text hint | The user is redirected to a new page loaded with items related to the search | |||
LUMA-6 | Men bottoms can be searched | User should have accessed to Luma website | Visit https://magento.softwaretestingboard.com/ | User is redirected to Luma Website | |
6.1 | Search: 1. Livinston 2. Kratos | Type {Test Data} in search field at the top right-hand corner | A text hint is displayed | ||
6.2 | Click on the displayed text hint | The user is redirected to a new page loaded with items related to the search | |||
LUMA-7 | No items are displayed when searching non-existing items | User should have accessed to Luma website | Visit https://magento.softwaretestingboard.com/ | User is redirected to Luma Website | |
7.1 | Search: 1. QWERTY 2. !@#$%^& | Type {Test Data} in search field at the top right-hand corner | A text hint is displayed | ||
7.2 | Click on the displayed text hint | The user is redirected to a new page loaded with items related to the search | |||
LUMA-8 | Women accessories can be purchased | User should have accessed to Luma website | Visit https://magento.softwaretestingboard.com/ | User is redirected to Luma Website | |
8.1 | 1. Women > Tops > Jackets 2. Women > Bottoms > Pants |
Go to {Test Data} | User is redirected to the desired page | ||
8.2 | 1. Jade Yoga Jacket 2. Portia Capri |
Click on {Test Data} | User is redirected to the item page | ||
8.3 | M 29 |
Select {Test Data} size | The desired size is selected | ||
8.4 | Green Blue |
Select {Test Data} color | The desired size is selected | ||
8.5 | 1 20 |
Type {Test Data} as quantity | The desired quantity is selected | ||
8.6 | Click on cart icon and verity the subtotal | The subtotal is the multiplication of the quantity of items and the price of it | |||
8.7 | Click on proceed to checkout | User is redirected to the shipping page | |||
8.8 | Email address: test@test.com First Name: Test Last Name: Test Street Address: Test City: Test State: Berlin ZIP: 12345 Country: Germany Phone Number: 12345678 |
Fill mandatory details in the form | Form details are filled | ||
8.9 | Table Rate Fixed |
Select Table Rate as the shipping method and click on Next | User is redirected to the review & payments page | ||
8.10 | Check "My billing and shipping address are the same" and click on Place Order button | "Thank you for you purchased!" message is displayed | |||
LUMA-9 | Men accessories can be purchased | User should have accessed to Luma website | Visit https://magento.softwaretestingboard.com/ | User is redirected to Luma Website | |
9.1 | 1. Men > Tops > Jackets 2. Men > Bottoms > Pants |
Go to {Test Data} | User is redirected to the desired page | ||
9.2 | 1. Typhon Performance 2. Livingston |
Click on {Test Data} | User is redirected to the item page | ||
9.3 | M |
Select {Test Data} size | The desired size is selected | ||
9.4 | Red Livingston |
Select {Test Data} color | The desired size is selected | ||
9.5 | 1 20 |
Type {Test Data} as quantity | The desired quantity is selected | ||
9.6 | Click on cart icon and verity the subtotal | The subtotal is the multiplication of the quantity of items and the price of it | |||
9.7 | Click on proceed to checkout | User is redirected to the shipping page | |||
9.8 | Email address: test@test.com First Name: Test Last Name: Test Street Address: Test City: Test State: Berlin ZIP: 12345 Country: Germany Phone Number: 12345678 |
Fill mandatory details in the form | Form details are filled | ||
9.9 | Table Rate Fixed |
Select Table Rate as the shipping method and click on Next | User is redirected to the review & payments page | ||
9.10 | Check "My billing and shipping address are the same" and click on Place Order button | "Thank you for you purchased!" message is displayed | |||
LUMA-10 | Gear accessories can be purchased | User should have accessed to Luma website | Visit https://magento.softwaretestingboard.com/ | User is redirected to Luma Website | |
10.1 | 1. Gear > Bags | Go to {Test Data} | User is redirected to the desired page | ||
10.2 | Fusion Backpack | Click on {Test Data} | User is redirected to the item page | ||
10.3 | Select {Test Data} size | The desired size is selected | |||
10.4 | Select {Test Data} color | The desired size is selected | |||
10.5 | Type {Test Data} as quantity | The desired quantity is selected | |||
10.6 | Click on cart icon and verity the subtotal | The subtotal is the multiplication of the quantity of items and the price of it | |||
10.7 | Click on proceed to checkout | User is redirected to the shipping page | |||
10.8 | Email address: test@test.com First Name: Test Last Name: Test Street Address: Test City: Test State: Berlin ZIP: 12345 Country: Germany Phone Number: 12345678 |
Fill mandatory details in the form | Form details are filled | ||
10.9 | Table Rated | Select Table Rate as the shipping method and click on Next | User is redirected to the review & payments page | ||
10.10 | Check "My billing and shipping address are the same" and click on Place Order button | "Thank you for you purchased!" message is displayed | |||
LUMA-11 | Validate message when there are no items in the shopping cart | User should have accessed to Luma website | Visit https://magento.softwaretestingboard.com/ | User is redirected to Luma Website | |
11.1 | Click on cart icon | A pop up is displayed | |||
11.2 | No items should not have been added to the cart before | Validate the message "You have no items in your shopping cart." is present | The message regarding no items in the cart is displayed | ||
LUMA-12 | User can sign in | User should have accessed to Luma website | Visit https://magento.softwaretestingboard.com/ | User is redirected to Luma Website | |
12.1 | vohola2224@sesxe.com | Type {Test Data} | Email gets filled | ||
12.2 | Test123@QA$ | Type {Test Data} | Password gets filled | ||
12.3 | Click on "Sign in" button | User gets logged in | |||
LUMA-13 | User can create an account | User should have accessed to Luma website | Visit https://magento.softwaretestingboard.com/ | User is redirected to Luma Website | |
13.1 | Click on Sign in link at the top right-hand corner | User is redirected to the customer login | |||
13.2 | Test | Type {Test Data} | First Name gets filled | ||
13.3 | Test | Type {Test Data} | Last Name gets filled | ||
13.4 | @sesxe.com | Type {Test Data} | Email gets filled | ||
13.6 | Test123@QA$ | Type {Test Data} | Password gets filled | ||
13.7 | Test123@QA$ | Type {Test Data} | Confirm password gets filled | ||
13.8 | Click on "Create an account" button | Account gets created | |||
LUMA-14 | User cannot sign in with incorrect credentials | User should have accessed to Luma website | Visit https://magento.softwaretestingboard.com/ | User is redirected to Luma Website | |
14.1 | Click on Sign in button at the top right-hand corner | User is redirected to the customer login | |||
14.2 | Test@test.com | Type {Test Data} | Email gets filled | ||
14.3 | Password123 | Type {Test Data} | Password gets filled | ||
14.4 | Click on "Sign in" button | An error message gets displayed |
Page Object Model, also known as POM, is a design pattern in Selenium that creates an object repository for storing all web elements. It helps reduce code duplication and improves test case maintenance. In Page Object Model, consider each web page of an application as a class file. Each class file will contain only corresponding web page elements. Using these elements, testers can perform operations on the website under test.
BDD is a way for software teams to work that closes the gap between business people and technical people by:
We do this by focusing collaborative work around concrete, real-world examples that illustrate how we want the system to behave. We use those examples to guide us from concept through to implementation, in a process of continuous collaboration.
@LUMA
Feature: Luma
Background:
Given I visit Luma page
@LUMA-1
Scenario Outline: Sections from New in Womens can be opened
Given I click on What is New
When I click on "section" women section
Then I validate I am in the "section" page
Examples:
| section |
| Hoodies & Sweatshirts |
| Bras & Tanks |
@LUMA-2
Scenario Outline: Sections from New in Mens can be opened
Given I click on What is New
When I click on "section" men section
Then I validate I am in the "section" page
Examples:
| section |
| Hoodies & Sweatshirts |
| Tanks |
@LUMA-3
Scenario Outline: Women tops can be searched
Given I search "item" item
When I click on search autocomplete
Then I validate the "item" is displayed in the page
Examples:
| item |
| Jade Yoga Jacket |
| Diva Gym Tee |
@LUMA-4
Scenario Outline: Women bottoms can be searched
Given I search "item" item
When I click on search autocomplete
Then I validate the "item" is displayed in the page
Examples:
| item |
| Portia Capri |
| Artemis Running Short |
@LUMA-5
Scenario Outline: Men tops can be searched
Given I search "item" item
When I click on search autocomplete
Then I validate the "item" is displayed in the page
Examples:
| item |
| Typhon Performance |
| Logan HeatTec |
@LUMA-6
Scenario Outline: Men bottoms can be searched
Given I search "item" item
When I click on search autocomplete
Then I validate the "item" is displayed in the page
Examples:
| item |
| Livingston|
| Kratos |
@LUMA-7
Scenario Outline: No items are displayed when searching non-existing items
Given I search "item" item
When I hit Enter button
Then I validate the "Your search returned no results." message gets displayed
Examples:
| item |
| QWERTY |
@LUMA-8
Scenario Outline: Women accessories can be purchased
Given I go to "header" > "section" > "item"
When I click on "product" product
And I buy "units" units of "size" size and "color" color
And I fill the shipping details with following data
| Email | First name | Last name | Street | City | State | ZIP | Country | Phone number | Shipping method |
| hola@test.com | Test | Test | Test | Test | Berlin | 12345 | Germany | 12345678 | Fixed |
Then I validate the order was successful
Examples:
| header | section | item | product | units | size | color |
| Women | Tops | Jackets | Jade Yoga Jacket | 1 | M | green |
| Women | Bottoms | Pants | Portia Capri | 20 | 29 | blue |
@LUMA-9
Scenario Outline: Men accessories can be purchased
Given I go to "header" > "section" > "item"
When I click on "product" product
And I buy "units" units of "size" size and "color" color
And I fill the shipping details with following data
| Email | First name | Last name | Street | City | State | ZIP | Country | Phone number | Shipping method |
| hola@test.com | Test | Test | Test | Test | Berlin | 12345 | Germany | 12345678 | Fixed |
Then I validate the order was successful
Examples:
| header | section | item | product | units | size | color |
| Men | Tops | Jackets | Typhon Performance | 1 | M | red |
@LUMA-10
Scenario Outline: Gear accessories can be purchased
Given I go to "header" > "section"
When I click on "product" product
And I buy "units" units
And I fill the shipping details with following data
| Email | First name | Last name | Street | City | State | ZIP | Country | Phone number | Shipping method |
| hola@test.com | Test | Test | Test | Test | Berlin | 12345 | Germany | 12345678 | Fixed |
Then I validate the order was successful
Examples:
| header | section | product | units |
| Gear | Bags | Fusion Backpack | 1 |
@LUMA-11
Scenario: Validate message when there are no items in the shopping cart
When I click on cart
Then I validate there are no items in the shipping cart
@LUMA-12
Scenario Outline: User can sign in
Given I go to login page
When I enter "username" and "password" as my credentials
Then I validate I was logged in
Examples:
| username | password |
| vohola2224@sesxe.com | Test123@QA$ |
@LUMA-13
Scenario: User can create an account
Given I go to create an account
When I fill the account details
| First Name | Last Name | Email | Password | Confirm password |
| Test | Test | @sesxe.com | Test123@QA$ | Test123@QA$ |
Then I validate my account was created
@LUMA-14
Scenario Outline: User cannot sign in with incorrect credentials
Given I go to login page
When I enter "username" and "password" as my credentials
Then I validate an error message is displayed
Examples:
| username | password |
| nonexistingaccount@test.com | Test123@QA$ |
Java
Selenium
Eclipse
Page Object Model
Cucumber
Gerkhin
Behavior Driven Development