Debomita Bhattacharjee has Published 590 Articles

How to get the response in different format in Mock Server using Postman?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 03-Aug-2021 13:37:52

758 Views

We can get the Response in different formats in Mock Server. A Mock Server is created to avoid sending requests on the real time or production data. The steps to create a Response in different format in Mock Server are listed below −Step 1 − Click on New from the ... Read More

How to Import Collection in Postman?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 03-Aug-2021 13:30:48

2K+ Views

We can import Collections in Postman. To perform the this task, follow the below steps −Step 1 − Click on the Import menu in the Postman application.Step 2 − Import pop-up shall open with the options to import from a File, Folder, Link, Raw text and Code Repository.Step 3 − ... Read More

How to set Test and Collection Runner in Postman?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 03-Aug-2021 13:29:17

1K+ Views

We can add test verifications to the Response obtained from a request with the help of scripts. These scripts are incorporated in the Tests tab. The tests only get executed provided the request is successful.A test developed under the Tests tab is written in JavaScript. Once a request is sent, ... Read More

Different types of Asserts in Postman

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 03-Aug-2021 13:22:58

398 Views

There are different types of Asserts in Postman. We can add Assertions on different sections of the Response received. Some of the Assert types are listed below −Assert on Response Codepm.test["Status Code is 200"], function(){    pm.response.to.have.status(200) })The above assertion passes if the Response code is 200.pm.test["Status is OK"], function(){ ... Read More

Executing Tests on Cookies in Postman

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 03-Aug-2021 13:18:37

2K+ Views

We can execute Tests on Cookies in Postman. Once a request gets executed for an endpoint, a Response gets generated. Within a Response, the cookie information gets generated under the Cookies tab.We can add Tests script around cookies and apply Assertions on them for verification. Test scripts are incorporated under ... Read More

How to handle Infinite loops in Postman Workflow?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 03-Aug-2021 13:00:24

2K+ Views

We can handle infinite loops in the Postman workflow. The requests in a Collection get executed in the order in which they appear. However, we can change the workflow with the help of the function - postman.setNextRequest().It is used to direct the next request to be executed. The name of ... Read More

How to send a report through email using Selenium Webdriver?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 29-Jun-2021 08:42:55

3K+ Views

We can send a report through email using Selenium webdriver. The email report can be an important feature in an automation framework. An email should be necessarily sent after the combined execution of a regression suite has completed to get an overall view of the test results.The ways to send ... Read More

How to do UI testing with Selenium?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 29-Jun-2021 08:37:35

2K+ Views

We can do UI testing with Selenium webdriver. To achieve this, we have to follow the steps listed below which can be applied to any script developed to test the UI of the application −Step1 − Object of Webdriver should be created. For example, WebDriver driver = new ChromeDriver();The above ... Read More

Modern Web Automation With Python and Selenium

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 29-Jun-2021 08:28:31

1K+ Views

We can have modern web automation with Python and Selenium. To configure with Selenium webdriver in Python the steps described below need to be followed −Step1 −To install Python in our system, visit the link − https://www.python.org/downloads/Step 2 − Click on the Download Python button. Once the download is ... Read More

How can I capture network traffic of a specific page using Selenium?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 29-Jun-2021 08:25:11

6K+ Views

We can capture network traffic on a specific page using Selenium webdriver in Python. To achieve this, we take the help of the JavaScript Executor. Selenium can execute JavaScript commands with the help of the execute_script method.JavaScript command to be executed is passed as a parameter to this method. To ... Read More

Previous 1 ... 7 8 9 10 11 ... 59 Next
Advertisements