Automation QA Testing Course Content

Hybrid Framework


FrameWork: it is set of instructions and guidelines will be followed and arrange the code in proper folder structure.

FrameWork Features:

1)reusability of the Code
2)Maintenance of code is very eay
3)It provides the Reports
4)It provides the logs and screenshots
5)any non technical/novice resources can understand the code easily

Differenet FrameWorks:

1)DataDriven Framework
2)keyword driven framework
3)Hybrid Framework
4)BDD
===========================================================
What is the difference in keyword driven vs data driven vs behavior driven frameworks?
Keyword-driven, data-driven, and behavior-driven testing frameworks are all strategies used in software testing, each with its own approach and focus. Here's a comparison of these three testing frameworks:

Keyword-Driven Testing Framework:

  • Focus: Keyword-driven testing, also known as table-driven testing, focuses on separating test automation logic from test data and test scripts.
  • Components:
    • Keywords: Actions or operations that represent test steps (e.g., "click," "type," "verify").
    • Test Data: Input and expected output data.
    • Test Scripts: A set of instructions that use keywords and test data to execute test cases.
  • Advantages:
    • Promotes reusability of keywords.
    • Easy to maintain as test data and logic are separated.
    • Non-technical team members can write and understand test cases.
  • Example: A keyword-driven framework might have keywords like "login," "search," and "add to cart," which are combined with test data to create test scripts.

Data-Driven Testing Framework:

  • Focus: Data-driven testing focuses on testing the same functionality with multiple sets of data to ensure the application behaves correctly across various inputs.
  • Components:
    • Test Data: Multiple sets of input and expected output data.
    • Test Scripts: A single set of test scripts that can iterate over different sets of test data.
  • Advantages:
    • Efficient for testing multiple scenarios with minimal test script duplication.
    • Easily extends test coverage by adding new data sets.
  • Example: In a data-driven framework, you might have a single login test script that is executed with different username and password combinations from a data source (e.g., spreadsheet or database).

Behavior-Driven Testing Framework (BDD):

  • Focus: Behavior-driven testing focuses on describing the expected behavior of an application in natural language terms, making it more accessible to non-technical stakeholders.
  • Components:
    • Feature Files: Text files written in a structured language (e.g., Gherkin) that describe features, scenarios, and steps.
    • Step Definitions: Code that maps the steps in feature files to automation logic.
  • Advantages:
    • Encourages collaboration between technical and non-technical team members.
    • Provides a clear understanding of the expected behavior of the application.
    • Promotes test automation using a human-readable format.
  • Example: In a BDD framework, you might have a feature file that describes a user registration feature with scenarios like "Register with valid credentials" and "Register with invalid credentials."
  • In summary, these testing frameworks differ in their approach and focus:

    • Keyword-Driven Framework focuses on reusability and separating test logic from data.
    • Data-Driven Framework focuses on testing the same functionality with different sets of data.
    • Behavior-Driven Framework (BDD) focuses on describing expected behavior using natural language and encourages collaboration between technical and non-technical team members.

    The choice of framework depends on your project's requirements, the team's expertise, and the level of collaboration needed between technical and non-technical stakeholders. Some projects may even combine elements from multiple frameworks to create a custom solution that best fits their needs.

=====================================================
HybridFramework:
 It is combination of TestNG+Datadriven/KeywordDriven and Page Object Model Design Pattern.

TestNg is used to design the TestCases

Datadriven is used to test the same scenario with multiple sets of data

POM: how you we can design our page Elements/Objects

What is Page Object Model in Selenium?

Page Object Model, also known as POM, is a design pattern in Selenium that creates an object repository for storing all web elements. It is useful in reducing 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

Advantages of Page Object Model
  • Helps with easy maintenance: POM is useful when there is a change in a UI element or there is a change in an action. An example would be: a drop-down menu is changed to a radio button. In this case, POM helps to identify the page or screen to be modified. As every screen will have different java files, this identification is necessary to make the required changes in the right files. This makes test cases easy to maintain and reduces errors.
  • Helps with reusing code: As already discussed, all screens are independent. By using POM, one can use the test code for one screen, and reuse it in another test case. There is no need to rewrite code, thus saving time and effort.
  • Readability and Reliability of scripts: When all screens have independent java files, one can easily identify actions that will be performed on a particular screen by navigating through the java file. If a change must be made to a certain section of code, it can be efficiently done without affecting other files.

Implementing POM in Selenium Project


1)Plain page object model

public static final By elementname=By.locator("locator");

Respective methods developed for above elements like doing actions on the elements, verifying whether that element is present in that page or not, page title is present or not. This is all developed using webdriver methods

to do action you have to write syntax :
public void clickElement(){
driver.findElement(elementname).click();
}

2)Using PageFactory class

What is Page Factory in Selenium?

Page Factory is a class provided by Selenium WebDriver to support Page Object Design patterns. In Page Factory, testers use @FindBy annotation. The initElements method is used to initialize web elements.

  • @FindBy: An annotation used in Page Factory to locate and declare web elements using different locators. Below is an example of declaring an element using @FindBy
    @FindBy(id="elementId") WebElement element;

    Similarly, one can use @FindBy with different location strategies to find web elements and perform actions on them. Below are locators that can be used:

    • ClassName
    • CSS
    • Name
    • Xpath
    • TagName
    • LinkText
    • PartialLinkText
  • initElements()initElements is a static method in Page Factory class. Using the initElements method, one can initialize all the web elements located by @FindBy annotation.
  • lazy initialization: AjaxElementLocatorFactory is a lazy load concept in Page Factory. This is used to identify web elements only when they are used in any operation or activity. The timeout of a web element can be assigned to the object class with the help of the AjaxElementLocatorFactory.

 //create a Constructor
public classname(){

PageFactory.initElements(driver,this);
}

@FindBy(locator="locatorvalue")
private WebElement elementName;

@FindBy(locator="locatorvalue")
private WebElement elementName;


@FindBy(locator="locatorvalue")
private WebElement elementName;


Respective methods developed for above elements like doing actions on the elements, verifying whether that element is present in that page or not, page title is present or not. This is all developed using webdriver methods

public void clickElement(){
elementName.click();
}
=====================================================================
Why Page Object Model is better then Page Factory in Selenium?
PageFactory is an inbuilt POM concept in Selenium WebDriver, used for initialising Page objects or instantiating the Page object itself without using “FindElement" or "FindElements"

1) It uses annotations @FindBy to find WebElement, with attributes like tagName, partialLinkText, name, linkText, id, css, className, XPath.

2) "initElements()" is a method provided by the Page Factory class to initialize elements defined in a Page Object.

The initElements() method takes two parameters: a WebDriver instance and a Page Object instance. It scans the Page Object for any fields that are annotated with the @FindBy annotation and initializes them.

3) "@CacheLookUp" The end goal of this annotation is to make the code execute faster. It’s used mostly for WebElements in a test case. For the specific element, it keeps the WebElement in the cache memory after the first time it’s run.

Page Object Model:

Page Object Model (POM)
POM is a design pattern creating an Object Repository for web UI elements, aiming to reduce code duplication and improve test maintenance.

Each web page has a corresponding Page Class containing methods that perform operations on WebElements.

POM separates operations and flows in the UI from validation, making the code cleaner and more understandable.

It supports the reuse of page methods and gives methods realistic names for easy mapping with UI operations.

Why Not to use Page Factory?

(Refer this KeyNote from Selenium Team for its limitations: https://lnkd.in/gGsh3pgE)

1) The @CacheLookup annotation in PageFactory, intended for caching elements, can lead to StaleElementException If the DOM changes, it makes the element stale.
2) PageFactory is considered a “cumbersome and problematic implementation” with no significant benefits over direct runtime code element finding.













Did you implement interface in your automation?
Ans) yes
explanation: We have implemeneted ITestListener interface in our custom class. All the ITestListener interface methods are implemented in CustomListener class
ITestListener Interface Methods:
                        onFinish(ITestContext context)
Invoked after all the tests have run and all their Configuration methods have been called.
voidonStart(ITestContext context)
Invoked after the test class is instantiated and before any configuration method is called.
voidonTestFailedButWithinSuccessPercentage(ITestResult result)
Invoked each time a method fails but has been annotated with successPercentage and this failure still keeps it within the success percentage requested.
voidonTestFailure(ITestResult result)
Invoked each time a test fails.
voidonTestSkipped(ITestResult result)
Invoked each time a test is skipped.
voidonTestStart(ITestResult result)
Invoked each time before a test will be invoked.
voidonTestSuccess(ITestResult result)
Invoked each time a test succeeds.
-----------------------------------------------------------------------------------------------------------------------------
Where you have used java OOPS concepts in your automation Framework?
Ans) Java oops concepts are :
        1) Encapsulation
        2)Inheritance
        3)Polymorphysm
      4)Abstraction
Encapsulaiton:
Every Page class follows the encapsulation concepts. The page objects are declared as private and respective element methods are defined as public
Inheritance:
My TestBase class is extending to every testNG class.
ex
public clsss SearchTest extends TestBase{}
My TestBase class is extending to WebDriverUtility methods class.
EveryPage class will extend to WebDriverUtility class
Public class WebDriverUtility extends TestBase{}
public class HomePage extends WebDriverUtility{} -->MultiLevel Inheritance
Interface:
WebDriver is an interface. WebDriver abstract methods are implemented in RemoteWebDriver class. i.e we are overriding the WebDriver methods in the RemoteWebDriver class this is Following Method Overriding.
Wait is an Interface
JavascriptExecutor is an interface
Action is an interface
TakesScreenshot is an Interface
PolyMorphysm:
WebDriver driver=new ChromeDriver();
this is following RunTimePolymorphysm
MethodOverloading:
Actions class  is following method overloading concepts
click(), click(WebElement ele)
contextClick(), contextClick(WebElement ele);
ExpectedConditions class also following Methodoverloading concepts.
elementToBeClickable(By.locator("locatorvalue"));
elementToBeClickable(WebElement ele);
--------------------------------------------------------------------------------------------------
In this video, I have explained how to use JetBrains #Aqua IDE (Editor) for Selenium based projects. About Aqua: https://www.jetbrains.com/aqua/
download preview:https://www.jetbrains.com/aqua/download/#section=windows Designed for test automation: Aqua is the first JetBrains IDE created specifically for test automation. It's an all-in-one workspace that will help you boost your quality engineering productivity. Web Inspector: The embedded Web Inspector allows you to view web applications in Aqua and capture any page elements required for automated tests. Working like a built-in browser, the Web Inspector lets you stay inside the IDE without switching to another tool. Support for popular testing frameworks: Aqua supports the Selenium, Cypress, and Playwright testing frameworks, enabling you to create and run automated UI tests using your preferred tools. With JetBrains Aqua, you can write, run, and debug unit tests using JUnit, pytest, Jest, and other tools. Support for multiple languages: Aqua is an IDE that understands Java, Python, JavaScript, TypeScript, Kotlin, and SQL. Just like any other JetBrains IDE, Aqua has powerful code completion and refactoring capabilities, helpful on-the-fly inspections, and a user-friendly debugger and test runner. Modern UI: A modern and intuitive user interface makes it easy for both beginners and experienced professionals to get started with Aqua. Comprehensive feature set: Aqua boasts a rich feature set with our HTTP Client for API testing, support for popular databases, and integration for Docker and version control. This feature set is available out of the box.


JetBrains Aqua – An IDE for Writing Tests You Can Be Proud Of.

In Aqua, we’ve assembled everything a test automation engineer needs on a daily basis, including a multi-language IDE (with support for JVM, Python, and JavaScript, and others), an HTTP client, database management functionality, Docker support, a TMS client, and a new, powerful web inspector for UI autom


Why do you need Aqua?

Designed for test automation

Aqua is the first JetBrains IDE created specifically for test automation. It's an all-in-one workspace that will help you boost your quality engineering productivity.

Web Inspector

The embedded Web Inspector allows you to view web applications in Aqua and capture any page elements required for automated tests. Working like a built-in browser, the Web Inspector lets you stay inside the IDE without switching to another tool.

Aqua’s embedded Web Inspector generates a unique CSS or XPath locator for a selected element on a web page and adds it to the source code. When Web Inspector is active, CSS and XPath code completion suggests and highlights locators for the most important web page elements.



Support for popular testing frameworks

Aqua supports the Selenium, Cypress, and Playwright testing frameworks, enabling you to create and run automated UI tests using your preferred tools. With JetBrains Aqua, you can write, run, and debug unit tests using JUnit, pytest, Jest, and other tools.

Comprehensive feature set

Aqua boasts a rich feature set with our HTTP Client for API testing, support for popular databases, and integration for Docker and version control. This feature set is available out of the box.

Support for multiple languages

Aqua is an IDE that understands Java, Python, JavaScript, TypeScript, Kotlin, and SQL. Just like any other JetBrains IDE, Aqua has powerful code completion and refactoring capabilities, helpful on-the-fly inspections, and a user-friendly debugger and test runner.

Modern UI

A modern and intuitive user interface makes it easy for both beginners and experienced professionals to get started with Aqua

==============================================================
Creating Maven Project with above components:

Open Eclipse and Click on File – New – Project.
Select Maven – Maven Project as below :


Click next. Following window will appear :
Click on Create a simple project(skip archetype selection)

Click Next. Following window will appear :


Fill the required information as above.
Click Finish. Your project will be created as below :

Make sure pom.xml is created. We need to add maven dependenices in pom.xml file.
pom.xml contains four sections:
1)Project information
2)properties section
3)build section
4)dependencies section

Complete pom.xml file with all dependencies, build and properties sections
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>HybridAutomationFrameowrkNov302022</groupId>
  <artifactId>HybridAutomationFrameowrkNov302022</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  
 <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 </properties>
  
  <build>
  <plugins>
   <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.8.1</version>
    <configuration>
     <source>1.8</source>
     <target>1.8</target>
    </configuration>
   </plugin>

   <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.19.1</version>
    <configuration>
     <suiteXmlFiles>
      <suiteXmlFile>src/test/resources/TestNG/TestNG.xml</suiteXmlFile>
     </suiteXmlFiles>
    </configuration>
   </plugin>
  </plugins>
<resources>
  <resource>
  <directory>src/test/java/com/qa/linkedin/config</directory>
  </resource>
  </resources>
 </build> 
  
    <dependencies>
  <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
<dependency>
    <groupId>org.seleniumhq.selenium</groupId>
    <artifactId>selenium-java</artifactId>
    <version>4.6.0</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.testng/testng -->
<dependency>
    <groupId>org.testng</groupId>
    <artifactId>testng</artifactId>
    <version>7.6.1</version>
    <scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
<dependency>
    <groupId>commons-io</groupId>
    <artifactId>commons-io</artifactId>
    <version>2.11.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api -->
<dependency>
    <groupId>org.apache.logging.log4j</groupId>
    <artifactId>log4j-api</artifactId>
    <version>2.19.0</version>
</dependency>


    <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
<dependency>
    <groupId>org.apache.logging.log4j</groupId>
    <artifactId>log4j-core</artifactId>
    <version>2.19.0</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
<dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi</artifactId>
    <version>5.1.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
<dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi-ooxml</artifactId>
    <version>5.1.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml-schemas -->
<dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi-ooxml-schemas</artifactId>
    <version>4.1.2</version>
</dependency>

 <!-- https://mvnrepository.com/artifact/com.aventstack/extentreports -->
<dependency>
    <groupId>com.aventstack</groupId>
    <artifactId>extentreports</artifactId>
    <version>4.0.9</version>
</dependency>


  
  </dependencies>
 
</project>
===============================================

Different Ways to run Framework Tests:


1)Run tests through testNG.xml


<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd">
<suite name="linkedinSuite">
<listeners>
     <listener class-name="com.qa.linkedin.listeners.ExtentReportListener"></listener>
  </listeners>
  <test thread-count="5" name="linkedinTest">
    <classes>
      <!-- class name="com.qa.linkedin.testcase.LinkedinHomeTest"/ -->
      <class name="com.qa.linkedin.testcase.SearchPeopleTest"/>
    </classes>
  </test> <!-- linkedinTest -->
</suite> <!-- linkedinSuite -->

Include all the test case classes in testNg.xml file then-->run as testNg Suite
While running through testNG.xml if you see below error

java.lang.NoClassDefFoundError: freemarker/template/TemplateModelException #295

Solution: add the fremarker dependency in pom.xml
<!-- https://mvnrepository.com/artifact/org.freemarker/freemarker -->
<dependency>
    <groupId>org.freemarker</groupId>
    <artifactId>freemarker</artifactId>
    <version>2.3.31</version>
</dependency>

problem2)
if you see below error 

java.lang.Error: Unresolved compilation problem: VERSION_2_3_29 cannot be resolved or is not a field #110


Solution:change the extentreports version from 4.1.0 to 4.1.1

Problem related to log4j:
[Utils] [ERROR] [Error] java.lang.NoSuchMethodError: org.apache.logging.log4j.Logger.atDebug()Lorg/apache/logging/log4j/LogBuilder;

Solution is:

The isTraceEnabled() method has been added to log4j 1.2.12, according to the Javadoc:
https://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/Logger.html#isTraceEnabled()

If you're using log4j (also if this is a transitive dependency on your project setup), please ensure that you take the latest version of log4j

Related link:https://github.com/jOOQ/jOOQ/issues/2085

2)Run tests through pom.xml


Add build configurations inside the pom.xml then mention the testNG.xml file

<build>
<plugins>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>

<suiteXmlFiles>
<suiteXmlFile>src/test/resources/TestNgSuite/testNG.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>

</plugins>

</build>



right click on pom.xml-->run as -->maven clean
right click on pom.xml-->run as -->maven install or maven test
right click on pom.xml-->run as -->maven build-->goals-->clean install-->apply-->run

3)Run tests through command prompt

1)Download maven to your local machine from below url
click on Binary zip archive apache-maven-3.8.5-bin.zip
place the zip file in c drive- one folder named: apachemaven

Unzip the compresed maven file
go to maven folder
go to environment variables 
click on New button
set the variable name as:MAVEN_HOME and value as:C:\ApacheMaven\apache-maven-3.8.5-bin\apache-maven-3.8.5 under system variables 
select the path variable--click on edit
click on new button in open window
%MAVEN_HOME%\bin
click ok-->ok-->ok
Go to project location
open project location in command prompt -->then type below command
mvn clean install

4)Run tests through batch file

create a batch file(run.bat) under project locaiton and include below two lines
cd D:\eclipseworkspaceAug2018\HybridFrameworkWeekendApril52020
mvn clean install
save file as run.bat file-->then double click on the bat file--tests will be triggered.
Note:No need to go to eclipse to triggere the tests with this process.

5)Run tests through Jenkins CI tool

What is Continuous Integration?
Continuous Integration is a development practice in which the Automation Testers are required to commit changes to the source code in a shared repository several times a day or more frequently. Every commit made in the repository is then built. This allows the teams to detect the problems early. Continuous Integration is the most important part of DevOps that is used to integrate various DevOps stages. Jenkins is the most famous Continuous Integration tool.
What is Jenkins?
Jenkins is an open source automation tool written in Java with plugins built for Continuous Integration purpose. Jenkins is used to build and test your software projects continuously making it easier for developers to integrate changes to the project, and making it easier for users to obtain a fresh build. It also allows you to continuously deliver your software by integrating with a large number of testing and deployment technologies. Jenkins integrates development life-cycle processes of all kinds, including build, document, test, package, stage, deploy, static analysis and much more. Jenkins achieves Continuous Integration with the help of plugins. Plugins allows the integration of Various DevOps stages. If you want to integrate a particular tool, you need to install the plugins for that tool. For example: Git, Maven, HTML publisher etc.

Advantages:
  • Advantages of Jenkins include:
  • It is an open source tool with great community support.
  • It is easy to install.
  • It has 1000+ plugins to ease your work. If a plugin does not exist, you can code it and share with the community.
  • It is built with Java and hence, it is portable to all the major platforms.
Apart from Jenkins, we have many more tools in the market such as:
  • Anthill
  • Bamboo
  • Cruise Control
  • Team City
Complete Jenkins Installation Process
URL: https://www.jenkins.io/download/ 

Download the jenkins.war file from below location:
latest stable Jenkins WAR file


Place jenkins.war file in c drive


Open jenkins.war file location in command prompt 


Go to jenkins downloaded folder location, Default port is 8080, no need to specify port if your jenkins running on 8080 port
provide below command in command prompt: to start the jenkins server
 java -jar jenkins.war

Then Press ENTER key from keyboard

if you want to start the jenkins in particular port use below command
java -jar jenkins.war --httpPort=8082


copy the password from command prompt console or 
goto the location for password:C:\Users\LENOVO\.jenkins\secrets\initialAdminPassword
STEP1:
open any browser & type below url in address bar
localhost:8080 or localhost:portnumber -->press enter key
Step2)
Enter the Administrator password that is copied from commandprompt or terminal

Step3):
After entering the password click on continue button
select  install suggested plugins option

Step4):
it will install all the suggested plugins


Step5): 
create username and password in below screen







STEP6)after setting username and password then login to jenkins
we will see welcome to jenkins page like below


complete the installation


Manage Jenkins(configuring the jenkins)-->Manage Plugins
install Html Publisher plugin(Note :https://plugins.jenkins.io/htmlpublisher/)
The HTML Publisher plugin is useful to publish HTML reports that your build generates to the job and build pages. It is designed to work with both Freestyle projects as well as being used in a Jenkins Pipeline.
maven integration plugin
Green Balls
create a job
trigger build
NOTE: if Jenkins installation is already done and the session is closed, just start the Jenkins server from the command prompt using the below command
java -jar jenkins.war
and wait for the message
jenkins is fully up and running in commond prompt console
then go to any browser & type below url in addressbar
localhost:8080
then page will open with jenkins login page then perform the login with username and password created during the installation
Configure Email Notification in Jenkins|How To Send Email from Jenkins Job:
Note:https://plugins.jenkins.io/email-ext/
1)click on manage Jenkins from the left panel

2)Click on Configure System
3)Enter Details SMTP server and Port in the Extended Email Notification section like the below screen
click on Advanced button

Under the Credentials, section click on add-->select Jenkins
Now Jenkins Credentials provider popup will be displayed
select the Kind option username with password

Enter username -
rameshitusa29@gmail.com and password[gmal app password need to be provided here]
Description:unique name for credentials
click on Add button 
default content type: plain/text
default Recipients:rameshitusa29@gmail.com
Enter default subject:
Automation Report - $PROJECT_NAME - Build # $BUILD_NUMBER - $BUILD_STATUS
Enter default content:
Hi,
Please find the Automation job summary report
 $PROJECT_NAME - Build # $BUILD_NUMBER - $BUILD_STATUS
Check console output at $BUILD_URL to view the results.
Thanks,
Automation Team
Note: Please do not reply to this email




Enter the details in the Email Notification Section
provide SMTP server:smtp.gmail.com
default user email suffix:@gmail.com
click on advanced
check the use SMTP Authentication checkbox
Enter username rameshitusa29@gmail.com and password[gmal app password need to be provided here]
check the use SSL checkbox

enter Gmail SMTP port:465
Click on Test Configuration by sending the test email checkbox
Enter the recipient's email address
Click on Test Connection

One Test Email should be sent

Click on Save and Apply buttons.
----------------------------------------------
Note:
navigate to https://myaccount.google.com/
click on Security on left panel

turn on 2 step verification
click on app password

It might ask you the password again enter it 
then below page will be shown
Select app :mail
select device:windows computer


Click on Generate button
Copy the 16 character App password:
flmzzrxjphqdjkfo


Click on Done
NOTE: Use the above password in Jenkins

The setting that you are looking for is not available for your account.” – this means 2-Step Verification is not enabled on your account. Enable it first.

=======================================================================
Create a job and test the email 
under build section select editable email notification option

Enter project recipients list
rameshitusa29@gmail.com,rameshn3@gmail.com

click on advanced
trigger part:when do you want to trigger the build
click on save and apply
====================================
Integrate Selenium Maven Github project in Jenkins:
1)first push the code to the GitHub
2)go to Jenkins
3)click on New Item name:integrategithubwith jenkins to create a new job
4)select maven project

5)Click on the Ok button
6)Enter the description: integrating selenium GitHub project in Jenkins
7)Source Code Management section-->select git radio button
8)Copy the Github code url like below

9)Enter Repository URL in jenkins job:
https://github.com/rameshn3/HybridFrameworkOct262022.git


10)click on add under Credentials -->select Jenkins

11)Select Kind:username with Password
Enter username:rameshn3@gmail.com
Password:********
Description:GithubCredentials
click on Add button
select the branch you want to run either */master or specific branch:automationtaskNov32022
Refer more:https://stackoverflow.com/questions/23906352/git-pullrequest-job-failed-couldnt-find-any-revision-to-build-verify-the-repo

12)give Root pom from github like below
Note: if you parameterise the pom.xml like step14
Goals and options should be like below


13)Under post steps select run regardless of build result
14)In Your Project pom.xml parameterise the build section plugin-surefire plugin like below, then commit to github

Click on Apply and Save buttons
Then trigger the build
It will download the project from GitHub and runs the testcases















No comments:

Post a Comment

Note: Only a member of this blog may post a comment.