Skip to main content

Selenium Training Course Syllabus

Course Content:


Class  1
What is Automation Testing?
Why Automation Testing is in Demand?
Tools available for Automation
Selenium History, Version and Flavors Available in market
Selenium Features, Limitation and Comparison with others tool
Java, Eclipse, Selenium Download and Installation

Class 2

Java Introduction
Java Architecture
First Program in Java
Data types
Class
Object
Methods
Keywords in Java
Package
Class 3


Java Variables
Java Operators
Loops
Decision Statements
Encapsulation
Method Overloading
Exception Handling
Class 4
Inheritance
Collection API
Constructor
Static and Non Static
Arrays
External file reading (reading excel, Property Files)
Class 5


Selenium Project Creation
Create first Selenium Script
Browser Open and Close commands
Browser Navigation command
Working with Firefox Browser
Working with Chrome Browser

Working with IE Browser
Class 6


Install Firebug, Fire path and other add on for Selenium
Different locator for Selenium
Working with Textbox, password fields.
Working with radio button, checkbox
Handle dropdowns
How to work with file uploader.
Class 7
Dynamic Xpath in detail
Dynamic CSS in detail
How to access web table in Selenium
Handle Alerts
Handle Multiple Windows
Handle frame and IFrame
Class 8
Mouse Hover event in Selenium
Right Click
Double Click
Implicit Wait, Explicit Wait and Fluent Wait in Selenium.
Drag and Drop
Capture Screenshots in Selenium
Class 9
What is TestNG
Need of TestNG
Report generation by TestNG
Grouping of Test Case
Set priority for Test case
Annotation of TestNG
Dependency in TestNG
Assert in TestNG
Class 10
Cross browser Testing
Parallel browser Testing
Data Provider in Testng using 2D array
Data provider in TestNG using Excel files
Class 11

Implementation of POM with Page Factory

Class 12


Implementation of POM with Page Factory

How to integrate Extent Report

Class 13

Sikuli Usages

Read data from property files
Class 14

What is ANT

ANT installation

Test Execution with ANT

Class 15

What is MAVEN 

MAVEN Installation

Test Execution with MAVEN

Class 16


Jenkins Installation
Jenkins Setup
Integrating Jenkins to the Project
Create build and Execute build for nightly execution
Send Email report based on build Status

Comments

Post a Comment

Popular posts from this blog

Eclipse New Maven Project: Could not resolve archetype

Close Eclipse Delete repository folder (you can find it in C:\Users{your user}.m2) Open Eclipse again. It will install maven repository automatically down v Open Window > Preferences Open Maven > Archetypes Click 'Add Remote Catalog' and add the following: Catalog File:  http://repo1.maven.org/maven2/archetype-catalog.xml Description: maven catalog

Configure Maven Project in to Jenkins and Run

As we all know, maven is a build / project management tool, based on the concept of a project object model (POM) which contains every information about your project. Maven allows a project to build using its project object model to manage builds, dependencies, releases and documentation which are all managed from the pom.xml file. Maven defines a standard way to build the projects, test, and deploy project artifacts. It provides a framework that enables easy reuse of common build logic for all projects following Maven's standards. We discussed  maven in detail  earlier here and hope you have  configured maven . First lets Create a simple maven project in Jenkins Step 1:-  Click New Items on the left menu ->Enter Project Name in “Item name” field -> Select Maven Project ->Click OK Step 2:-  Provide the job description Step 3:-  In Source Code Management, Jenkins supports CVS and Subversion out of the box, with built-in support for...

Class 1 Java introduction

What is Java Java is a  programming language  and a  platform . Java is a high level, robust, secured and object-oriented programming language. Platform : Any hardware or software environment in which a program runs, is known as a platform. Since Java has its own run time environment (JRE) and API, it is called platform. Features of Java The Java Features given below are simple and easy to understand. Simple Object-Oriented Portable Platform independent Secured Object-oriented Java is Object-oriented programming language. Everything in Java is an object. Object-oriented means we organize our software as a combination of different types of objects that incorporates both data and behavior. Basic concepts of Oops are: Object Class Inheritance Polymorphism Abstraction Encapsulation Variable Variable  is name of  reserved area allocated in memory . In other words, it is a  name of memory location . It is a...