As a part of End to End REST Assured Tutorial , in this post We will write first GET request in REST assured. I will strongly recommended you to learn basics of API testing from here. We will automate a GET request named "GetBookingIds" from Restful Booker. We will verify status code and line of … Continue reading REST Assured Tutorial 4 – Let’s Write First GET REST Assured Test
REST Assured Tutorial 3 – Static Import in Java
As a part of End to End REST Assured Tutorial , in this post We will learn about static import concept in Java which we use in REST Assured mostly. Static members of class : When we use "static" modifier with the declaration a member of a class is called as a static member of … Continue reading REST Assured Tutorial 3 – Static Import in Java
REST Assured Tutorial 2 – Setup a Basic REST Assured Maven Project in Eclipse IDE
As a part of End to End REST Assured Tutorial , in this post we will learn to setup a Maven - REST Assured in Eclipse IDE. Maven is a build automation tool for Java Projects primarily. If you have worked on Selenium projects, you must have used Maven. The major use of Maven we … Continue reading REST Assured Tutorial 2 – Setup a Basic REST Assured Maven Project in Eclipse IDE
Postman Tutorial Part 47 – Local or Temporary Variables in Postman
We have seen several types of variables in Postman already in previous posts. In this post, we will learn about Local or Temporary variable in Postman. A Local or temporary variable is created in to memory only during run time and removed once execution is done. As scope of local variable is limited to duration … Continue reading Postman Tutorial Part 47 – Local or Temporary Variables in Postman
Interview Experience at Harman Connected Services Bangalore for Selenium Automation Testing Profile – Oct-2019
Company Name :- Harman Connected Services Date :- Oct– 2019 Experience Level: – 8 Years Location- Bengaluru Duration:- 30 Mins Mode : – F2F Shared By: Kiran First Round:- What is collection and collections? TestNG how can we execute single test for multiple data at parallely?Program to print 1 2 3 4 5 6Program to remove … Continue reading Interview Experience at Harman Connected Services Bangalore for Selenium Automation Testing Profile – Oct-2019
Frequently Asked Java Program 36 : Java Program to Invert Case of Each Char in a String
Hello Folks, As part of Frequently Asked Java Programs In Interviews For Freshers And Experienced, in this post we will see a java program to invert the case of each character of string. Example:- Input: - mAkE SeleNIUM eaSY Output:-MaKe sELEnium EAsy Let's start with the logic:- Iterate entire string char by char.Check if current char … Continue reading Frequently Asked Java Program 36 : Java Program to Invert Case of Each Char in a String
Postman Tutorial Part 46 – Accessing Data Variables in Pre-request and test scripts
We have already learnt to create parameterized request body by reading data from a CSV and JSON file. If you have not gone through them yet, you must go now. Creating parameterized request by reading data from a CSV Creating parameterized request by reading data from a JSON Achieving Data driven testing using CSV in … Continue reading Postman Tutorial Part 46 – Accessing Data Variables in Pre-request and test scripts
Interview Experience at CTS (Cognizant) Bangalore for Selenium Java Profile ( Sep – 2019)
Shared By: – VeenaCompany Name :- Cognizant (CTS)Experience Level: – 2 YearsLocation– BengaluruMode : – F2FRounds: – 2 roundsDate :- Sep – 2019 Both rounds were moderate . Interviewers asked questions from Java and Selenium. Both rounds were 45 minutes long. First round consists of Java questions mainly. Second rounds focused on Selenium. First Round:- Features of … Continue reading Interview Experience at CTS (Cognizant) Bangalore for Selenium Java Profile ( Sep – 2019)
Postman Tutorial Part 45 – Data Driven Testing in Postman Using JSON File
Hello Folks, We have already seen How to read data from a json file in Postman. In previous post, we have learnt Achieving Data driven testing using CSV in Postman. I will strongly recommended to go through above two links to understand about Data driven testing of API. Instead of CSV , we will use JSON … Continue reading Postman Tutorial Part 45 – Data Driven Testing in Postman Using JSON File
Postman Tutorial Part 44 – Data Driven Testing in Postman Using CSV File
Hello Folks, We have already seen How to read data from a csv file in Postman. I have not discussed a major purpose of usage of data files in Postman yet. We are going to learn about that in this post. The major usage of reading data from files such as JSON and CSV in … Continue reading Postman Tutorial Part 44 – Data Driven Testing in Postman Using CSV File