Debomita Bhattacharjee has Published 867 Articles

Open New Browser Tab in Selenuim

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 29-Jun-2021 07:21:04

509 Views

Answer − We can open a new browser tab in Selenium webdriver. The methods - Keys.chord and sendKeys are required to achieve this task. The Keys.chord method is used to send multiple keys at once.We shall pass Keys.CONTROL and Keys.ENTER as parameters to this method. The complete string is again ... Read More

How to change the workflow in Postman?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 25-Jun-2021 16:30:32

179 Views

In a Collection, the requests are executed in the sequence in which they are created. However, a workflow can be changed in Postman. To illustrate it, let us take a Collection having four requests.To trigger that Collection, click on the arrow appearing to the right of the name of the ... Read More

GUID in Postman

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 25-Jun-2021 16:26:40

784 Views

GUID means Global Unique Identifier. It is in the form of a hexa-decima digit which is separated by hyphen. It helps to achieve distinctiveness due to this even if multiple people are creating the GUID simultaneously, the chance of having a duplicate GUID is rare.To generate a random value, using ... Read More

Postman Cheat Sheet

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 25-Jun-2021 16:25:58

991 Views

This Postman Cheat Sheet is based on the official documentation page of Postman (which is available in the below link) and from the overall knowledge on Postman −https://learning.postman.com/docs/getting-started/introduction/a. VariablesAll the variables can be set up manually from the GUI of Postman and they have a defined scope. The values of ... Read More

How to use Global Variable in Postman Request?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 25-Jun-2021 16:24:44

4K+ Views

We can use a Global variable in Postman Request. . We can set, get and clear a Global variable at runtime using the scripts. This is achieved by the pm.* function. The script to use a Global variable can be included either in the Tests or Pre-Request Script tabTo set ... Read More

Collection Runner in Postman?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 25-Jun-2021 16:24:12

1K+ Views

A Collection Runner in Postman is used for triggering more than one request simultaneously. After execution, the Collection does not yield a Response Body of individual request.The console of Collection Runner generates the pass or fail status of every request. For a Collection Runner, it is compulsory to have at ... Read More

How to Add Cookies in Postman?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 25-Jun-2021 16:23:49

5K+ Views

We can add cookies in Postman. To add a cookie, the below steps need to be followed −Step1 − Navigate to the Params tab below the address bar and then click on Cookies.Step2 − The MANAGE COOKIES window shall open. It lists down all the current cookies. To add a ... Read More

Global Scope Variables in Postman?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 25-Jun-2021 16:23:29

478 Views

The Global variables are the ones which can be used in every Environments and can be utilized for executing every request. Click on the eye icon available to the top right corner of the Postman application. In the below image, the Global variable g with value value1 is populated under ... Read More

What are Snippets in Postman?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 25-Jun-2021 16:23:11

3K+ Views

Snippets are small scripts used in Postman which are used to verify an API. These are pre-developed scripts that can be utilized directly. Thus it helps to save a good amount of time.Snippets can be used in the Pre-request Script and Tests tabs in Postman. Navigate to the Tests tab ... Read More

How to see request logs in Postman console?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 25-Jun-2021 16:22:50

7K+ Views

We can see request logs in the Postman console. Once a request has been sent, the Postman console records the header of request, variables, Response header and body, certificates, proxy settings, errors, scripts, output obtained from console.log, and so on.The Console is obtained from the Postman application by following the ... Read More

Advertisements