Skip to content

Latest commit

 

History

History
62 lines (51 loc) · 1.01 KB

File metadata and controls

62 lines (51 loc) · 1.01 KB

Java Selenium TestNG Automation

Introduction

Selenium is one of the most widely used open-source Web UI automation testing tools. It supports the automation of websites across different browsers, platforms, and programming languages.

Pre-Request Installation

Java

MAVEN

Intelij IDEA CE or Eclipse Photon

Maven Archetype

Maven Version = 3.8.6

Project Type = Maven Archetype Quick Start

Maven Life Cycle

Maven Clean

mvn clean

Maven Install

mvn install

Maven Test

mvn test

Maven Execution

Execute Single Test Suite

mvn clean test -Dtest=login

Execute All Test Suite

mvn clean test -DsuiteTest=suiteTest

Cross Browser Testing

mvn clean test -DsuiteTest=crossBrow

Environment Test

QA

mvn clean test -Dtest=login -Denvironment=qa

DEV

mvn clean test -Dtest-login -Denvironment=dev