Debomita Bhattacharjee has Published 867 Articles

What is Newman in Postman?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 03-Aug-2021 13:04:46

862 Views

The command-line runner used to execute requests and verify Response in Postman is known as Newman. Apart from the Collection Runner, the Newman can also be used for triggering requests in a Postman Collection.Newman works well with NPM registry and GitHub. It can also be integrated with Continuous Integration tools ... 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

What is Pre Requests scripts in Postman?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 03-Aug-2021 12:47:05

742 Views

The Pre-Request scripts are executed before the execution of requests. These scripts are implemented in JavaScript and mainly created to execute pre-requisite conditions like declaring request headers, parameters, variables, or an output.We can create Pre-Request Script to define the sequence of execution of requests in a Collection. A Pre-Request Script ... 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

Selenium Exception Error - Element is not clickable at point (x,y). Other element would receive the click

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 29-Jun-2021 08:39:00

1K+ Views

We may encounter the Selenium Exception Error - Element is not clickable at point(x, y). Other element would receive the click while working Selenium webdriver.This is normally seen while executing Selenium tests from the Chrome browser and not with other browsers like IE and Firefox. This happens because the Chrome ... 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

Jenkins for Test Automation

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 29-Jun-2021 08:33:00

636 Views

Jenkins is a continuous integration tool and used widely by both the development and testing teams. It comes without any licensing cost and is supported on multiple operating systems.In the test automation world, we run test suites with a large number of test cases, collect results on execution, prepare a ... Read More

Modern Web Automation With Python and Selenium

Debomita Bhattacharjee

Debomita Bhattacharjee

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

772 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

5K+ 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

How to set Proxy in Firefox using Selenium WebDriver?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 29-Jun-2021 08:21:57

2K+ Views

We can set a proxy in Firefox using Selenium webdriver. A proxy server enables users to access an URL of an application for testing purposes even with the presence of several layers of network.The setting up of proxy in Firefox can be done with the help of the FirefoxOptions class. ... Read More

Advertisements