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

Comprehensive Automation Testing Course

Uploaded by

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

Comprehensive Automation Testing Course

Uploaded by

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

Why Join Multiple Courses for Different types of Automation

when you get all Types of Automation Testing in One


Comprehensive Course.

 Lectures 45 classes.
 Video Life time access.
 Skill level all level
 Languages Hindi / English
 Notes, Interview Questions
Certificate of Completion

Automation Software Testing

Introduction to Software testing

what is Software Testing.


Different types of Software Testing.
Advantages of Automation Testing.
What to Automate in projects.
When to start Automation.
Scope for Automation testing in projects.

Java Concepts

Introduction to Java.
OOPs Concepts in java program.
Variable, Data types in java.
Keywords static, final, abstract.
Array in java.
Inheritance, Overloading & Overriding.
Interface, Package in java.
Collection.
Exception Handling.

Selenium Webdriver

Introduction to Web Driver.


Different between RC and Web Driver.
Absolute & Relative XPath.
Explicit & Implicit Wait.
Selenium WD-validate commands.
Move in Between Tabs, iFrame & Alert.
Handling Multiple Elements.
Mouse, Keybord Events.
Multi Device GUI CSS Testing.
File Upload Testing.
Video Testing.
JDBC - POI API.
Working with Excel.
Pass the data from Excel.
Export reports into Excel.
Log4j and Java Mail with Web Driver.

JUnit

JUnit Annotations.
Running JUnit Application with ANT
Commands.

TestNG Maven

What is TestNG.
Adding TestNG on Eclipse.
TestNG Annotations.
TestNG @Dataprovider from Excel POI.
TestNG Test Suite.
Integrate Maven , Selenium WD & TestNG.
Extent Reporting Results and Analysis.
Run Scripts from multiple programs.

Testing Frameworks

Introduction to Framework.
Use of Framework, why Framework.
Types of Framework.
Designing Keyword Driven Model.
Designing Data Driven Model.
Designing Hybrid Test Model.

BDD Cucumber

Configure Cucumber in Maven Project.


Cucumber Ghrekins.
Cucumber Feature File - Scenario.
Cucumber Step Defination - Annotations.
Cucumber Runner File - JUnit.
Cucumber Report - HTML, JSON.
Multiple Scenario - @Tag
Cucumber Scenario Outline - Data Tables.
Cucumber Hooks.
Cucumber integration with Selenium.

APPIUM - Mobile App Testing

Real Device Configuration on Windows and


Mac.
Getting Application package & activity
name.
Configure Capabilities on APPIUM
Inspector.
Getting / Creating xpath of Mobile App by
Mirroring.
Configure APPIUM Java Client on Maven
Project.
Launching apk by Appium Java Client.
Touch Events - Tap, Long press, Drop
down, Toggle button.
Horizontal / Vertical Scroll

JENKINS

Configuring Jenkins.
Creating Repository on GitHub.
Build Job from Github and Windows Batch
Command.
Jenkins integration with MAVEN.

JMeter

JMeter Script Recording using Proxy.


JMeter Thread Groups, Timers,
Assertions, Listeners
SMTP,FTP,JDBC Samplers.
CSV Data driven Test Case in JMeter.
JMeter Controllers.
JMeter Pre processor and Post processor.
JMeter Cookie Manager.
JMeter Non GUI mode Execution.
JMeter Report from cmd command.
JMeter Build integrating Selenium Plugin.
JMeter REST Execution.

API Testing

What is API?
Types of API - SOAP and REST
Request Types - GET, POST, PUT, DELETE,
What is Java Rest Assured Library?
Configuring REST on Eclipse Maven
Project
JSON Extractor - Validation Response
Body
Validating Response Code, Response
Header
Additional Concepts

Latest FAQ & Agends.


Resume preparation.
Mock interviews.
Job Assistence.

Other materials provided along with the training


PDF Files + Selenium e Books

Life time access to videos tutorials

Sample Resumes

Interview Questions

Complete Module & Frameworks Code

ABOUT THE TRAINER

Parag Saxena, B tech (CS) + MBA PTU. Having 13+ years of Experience.

Mobile 9810926239

Email : paragguide@[Link]

Common questions

Powered by AI

JMeter supports functional testing by allowing users to create and execute HTTP requests, SOAP and REST API tests using its various Samplers. Functional testing is enhanced with Assertions to validate response content. For performance testing, JMeter employs its Thread Groups to simulate multiple users and measures server response times, throughput, and error rates. Its Listeners provide real-time feedback and visualizations of performance data, like graphs showcasing server load and response trends, which are crucial for identifying bottlenecks .

Explicit and Implicit waits are synchronization techniques used in Selenium WebDriver to handle dynamic web pages. Implicit waits define a waiting time instructing the WebDriver to wait for a certain amount of time before throwing an exception. Explicit waits, in contrast, are applied to specific elements and allow the WebDriver to wait for a particular condition to be met before proceeding with the next step. Using these waits effectively increases the reliability of test scripts by reducing the occurrence of synchronization issues such as trying to interact with elements not yet loaded .

Automation testing offers several advantages over manual testing, including increased testing efficiency and coverage, the ability to run complex sets of tests quickly, and reducing the likelihood of human error in repetitive tasks . Ideal candidates for automation within a project include repeatable test cases, high-volume tests, and test cases that require multiple data sets .

Using TestNG with Maven enhances test suite management and execution by providing an organized framework for running, recording, and managing test results. TestNG allows grouping tests, parameterization, and parallel execution which improves testing efficiency. Maven aids in managing project dependencies and the build lifecycle, integrating seamlessly with TestNG for automated test executions. This combination simplifies setting up and running complex test scenarios repeatedly with minimal manual intervention .

Integrating Cucumber with Selenium enhances web application testing by enabling the execution of behavior specifications directly in the browser, bridging the gap between feature documentation and implementation. This integration effectively tests complex user journeys and scenarios by automating the browser interactions as described in Gherkin language. It aligns test automation with business value, offers detailed reporting, and supports data-driven testing via scenario outlines, which is crucial for comprehensive coverage .

Testing stateful applications using REST Assured poses challenges such as maintaining session state between requests and accurate simulation of user interactions. These can be mitigated by correctly handling cookies and session headers using REST Assured’s support for session filters that track and manage sessions. Additionally, making use of test data management techniques and maintaining a comprehensive suite of tests helps in managing state across API calls .

Integration of Jenkins with Maven streamlines the testing process by automating the build and deployment tasks, thus facilitating continuous integration. Jenkins schedules the builds, initiates the Maven commands, and also manages the process and reporting. Benefits of this integration include automation of testing, reducing manual intervention, enabling faster feedback, and improving overall collaboration and project quality. It ensures regular and efficient compilation of code and tests .

Cucumber in BDD provides improved clarity and collaboration compared to traditional test frameworks due to its use of natural language syntax (Gherkin) which is understandable by non-technical stakeholders. This ensures clearer communication and better alignment with business requirements. It also fosters collaboration between technical and non-technical teams by allowing all parties to contribute to the creation of acceptance criteria, unlike traditional frameworks that are often only accessible to developers .

Java constructs like inheritance, overloading, and interfaces contribute significantly to test automation framework design by promoting code reusability, extensibility, and maintainability. Inheritance allows common methods and variables to be centralized, reducing redundancy. Polymorphism through method overloading enables flexible handling of different data types. Interfaces enable decoupling of services and implementations, facilitating easy modifications and scalability in the context of testing frameworks .

Using APPIUM for mobile testing involves configuring capabilities specific to each device, such as platform name, version, device name, and app path. Tests are run across various devices using a grid setup or cloud services that allow parallel testing across multiple configurations. Challenges include managing device fragmentation, ensuring consistent environment setup, and handling varying platform-specific behaviors and performance issues which require robust test scripts and comprehensive logging .

You might also like