Make Selenium Easy – Page 7
We have already seen what are Global and Environment variables in Postman and its usage in creating parameterized requests. In this post, we will see another type of variables called Collection variables. Let’s consider some scenarios first:- If you have followed my posts in sequence, you must have seen that when we import a Collection … Continue reading Postman Tutorial Part 40 – Collection Variables in Postman
Company Name :- IQVIA ( Formerly IMS Health and Quintiles) Date :- Sep – 2019 Experience Level: – 6 – 8 Years Location- Bengaluru Duration:- Three rounds . (Written, Technical – 30 mins, Tech + Managerial = 20 Mins ) Mode : – F2F Written Round:- There were 15 questions. I remember below ones:- What … Continue reading Interview Experience at IQVIA (formerly IMS Health) Bangalore for Automation Testing Profile ( Sep – 2019)
Company Name :- Harman Connected Services Date :- Aug – 2019 Experience Level: – 5-9 Years Location- Bengaluru Duration:- 30 Mins each rounds Mode : – F2F Interviewer was really quick in asking questions. Maximum questions he asked from resume and answer you give. Below are some questions which I remember:- First Round:- What is … Continue reading Interview Experience at Harman Connected Services Bangalore for Manual & Automation Testing Profile – Aug-2019
Company Name :- Nous InfoSystem Date :- 03 – Sep – 2019 Location- Bengaluru Duration:- 20 Mins Questions asked:- Tell me about yourself and describe your automation experience and current project.Draw architecture of your latest framework.How do you exclude tests in Protractor-Jasmine?What exception Rest Assured will throw when we pass wrong content-type? What exception Rest … Continue reading Interview Experience at Nous InfoSystem Bangalore for Automation Testing Profile
What we will learn in this post:- Introduction to Header PresetsUsage of Header PresetsCreating and using Header PresetsManaging Header Presets Let’s think of a scenario before we jump to the concept of header presets. Suppose you need to add multiple headers or a set of headers to each request or different set of groups of … Continue reading Postman Tutorial Part 39 – Header Presets in Postman
When we hit any request in Postman, we should verify response code, response time , value of an attribute in response etc. These assertion helps to test the expected behavior of API. In this post, we will see some mostly used code snippets in Postman scripts to validate response. Code snippet to assert status code … Continue reading Postman Tutorial Part 38 – Mostly Used Assertion Code Snippets in Postman to Achieve API Automation
The dictionary meaning of the English word “Agile” is “Able to move quickly and easily”. You will see later in this post, how this definition is true for Software development. Waterfall methodology is a traditional Software Development Life Cycle (SDLC) which is more a linear sequential design pattern to develop software. A SDLC model consists … Continue reading Agile Software Development – Let’s Understand It
So we have learnt two ways of sharing a Postman collection:- Sharing as a LinkSharing as a JSON file But there is a problem in above ways of sharing collection. If your postman collection is using Environment variable or Global variables , those variables are not imported and shared with collection automatically. You need to … Continue reading Postman Tutorial Part 37 – Export & Import Global & Environment Variables in Postman As a JSON
We have already learnt about sharing a Postman Collection as a link. In this post we will see sharing a Postman collection as a JSON file. A Postman Collection can be exported and imported as a JSON file. This JSON file contains all metadata of collection which helps you to import collection. This exported JSON … Continue reading Postman Tutorial Part 36 – Export & Import Postman Collection As a JSON – Sharing Postman Collection
In last post, we have already seen Parsing of JSON Object in Postman. You can get API response in JSON Array as well. A JSON Array is an ordered list of values. If JSON response are enclosed within [ ], it is called a JSON Array. If JSON response is enclosed in { }, is … Continue reading Postman Tutorial Part 35 – Extracting Value From JSON Array Response in Postman – JSON Array Parsing in Postman