Key Elements of Robot Framework

1. Test Data Syntax: Robot Framework uses simple and easy-to-understand tabular syntax for test data representation. Test cases, test suites, and keywords are organized in tables, making them highly readable for any test designer. *** Test Cases *** Verify Login Functionality [Documentation] Test to verify the login functionality [Tags] Smoke Open Browser ${URL} ${Browser} ...
Read More »

Using Docker in Jenkins Pipeline Job | Jenkins Docker Plugin

Using Docker with Jenkins offers several advantages within our continuous integration and deployment(CI/CD) pipelines. Well, docker allows for containerization, so our applications and their dependencies can be bundled together in a lightweight, and isolated environment.Here are a few points on why we should use Dockers with Jenkins Pipeline Jobs:Easy Environment Setup: Docker provides a consistent...
Read More »

How to Install Git on Windows

GIT is a file version control system which is very popular now. It is really fast and simple, fully distributed, highly parallel, and scalable enough to handle the smallest to the largest software projects in the world. Download the installation package from below link: https://gitforwindows.org/  The default options are pretty ok for most users and of-course you can customize it...
Read More »

Python Unittest Tutorial Using the Unittest framework

Unit testing or whitebox testing, is a good way to enforce quality checks early on during product development phase. Unit test will test a small component of the application, for e.g. a method, or a smallest testable part of any software. Its different from integration tests where the integrated product is tested. In this video session let us learn about Unit testing in Python3. We will be...
Read More »

How To Install Groovy in Eclipse & How to run a Groovy Script

Groovy has been gaining lot of popularity since some time coz of its static and dynamic nature of execution. It is based on Java or JVM, and so its a statically typed language. Also it is a dynamic language with features similar to those of Python, Ruby. Eclipse is one of the most popular opensource IDE used for Java/J2EE project development. It can be used for development of other languages...
Read More »

How To Run Python 2 and Python 3 in same Windows and Also from git-bash

Most times we want to work on different version of Python in our Windows system. In the following video learn how to run both Python 2.7.x and Python 3.x in the same Windows 10 system. Also learn how to easily run python from git-bash prompt. For running python easily in git bash: Add the following in file .bashrc(create if not available). alias python3='winpty /c/(Python 3.x folder path)/python.exe' alias...
Read More »

Free Public Rest API's for API Testing & Learning API Automation

Here are a Couple of Free sample Rest API URL that anyone can use for Testing, learning API Automation and Prototyping. No Registration or Authentication is required for these API's. Go Ahead and try out the API's using any API client like SoapUI or Postman. In the video below, I have used soapUI to explore the API's and how to do different types of API requests. Happy Learning!! ...
Read More »

How To Set RestAPI Headers in SoapUI - Manually and Dynamically

Headers are an important part of RestAPI Request and Response. In this video let us learn how to set the headers in 3 different ways.  - Set Custom Headers manually.  - Set Headers from custom Properties in Project or Testsuite or Testcase level.  - Set Headers dynamically from API response using Property Transfer Step. In the following video, you will see How to Add Headers in...
Read More »

How To Do Contains Assertion in SoapUI

SoapUI Assertions are used to validate the API response received by a TestStep API during Testcase execution. "Contains Assertion" searches for a string in the API response and based on the availability of the string marks pass/fail for the Testcase. We have options of "Ignore Case" and "Regular Expression" on the search string. In the following video, you will see about "Contains Assertion"...
Read More »

Free Sample Rest API Server for Testing and Prototyping

Python-Flask-JWT based Rest API server, can be used to API Automation learning, prototyping. Recently I was looking to try out an API automation tool for demo, and as I wanted to show test-case validation as well which required connecting to the backend DB, I wasn't able to find a proper public one with all my criteria's. Finally wrote a small Rest API server and pushed it to github, so anyone can...
Read More »