vuhung16au / selenium

0 stars 0 forks source link

Overview

This documents cover the core and essential knowledge on Selenium using Java, maven, serenity with Eclipse as the IDE targeted for real life test cases of Wordpress CMS.

Selenium Scenario Components

Important concepts

  1. Actions APIs
  2. Interactions with web pages
  3. Navigate the browsers
  4. Find elements on web pages

Selenium Scenario Components

Development Environment

Setup development environment

Wordpress Demo Project on localhost

Install Wordpress using docker on localhost

Test Cases

The list of ongoing test cases

  1. Login (valid and invalid credentials)
  2. Add new users
  3. Post a new blog

Test Codes

  1. Login with a valid username/password
  2. Login with an invalide username/password
  3. Add a new Wordpress user
  4. Publish a new blog post

Guidelines/Tutorials/Notes

  1. Wait strategies in Selenium

Related Resources