Debomita Bhattacharjee has Published 863 Articles

Why Selenium IDE is not used for dynamic Website testing?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 25-Jun-2021 12:56:06

685 Views

Selenium IDE is not used for dynamic testing. It can be used for a quick solution for a simple automation scenario, but not for developing an entire regression suite. The reasons for doing so are listed below −Selenium IDE is a Firefox plugin and hence mostly compatible with only Firefox ... Read More

What are different Parameters available in Newman using Postman?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 25-Jun-2021 12:55:27

731 Views

There are different parameters available in Newman. Newman's command to list down all options is − newman run –h. Options in Newman is grouped into categories listed below −UtilityBasic setupRequest optionsOther Misc. OptionsUtility-h, --help – displays usage information.-v, --version - displays version number.Basic Setup--folder [name of folder] – points to ... Read More

How to automate gmail login process using selenium webdriver in java?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 25-Jun-2021 12:54:15

14K+ Views

We can automate the Gmail login process using Selenium webdriver in Java. To perform this task, first we have to launch the Gmail login page and locate the email, password and other elements with the findElement method and then perform actions on them.Let us have the look at the Gmail ... Read More

How to use Selenium IDE?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 25-Jun-2021 12:53:23

346 Views

We can use Selenium IDE with the help of the Firefox browser. The steps required to install it are listed below −Step1 − Open the Firefox browser and launch the URL − https://addons.mozilla.org/en-US/firefox/addon/selenium-ide/..Step2 − Click on the Add to Firefox button.Step3 − A browser pop-up gets opened. Click on Add.Step4 ... Read More

How to Generate API Documentation in Postman?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 25-Jun-2021 12:52:12

536 Views

We can generate API Documentation in Postman. This is done by most of the companies to help the developers in understanding the behavior of an API and guide them. An API is usually created for internal use and for third party developers.The steps to create an API Documentation are given ... Read More

How to Generate CLI & JUNIT Newman report on Jenkins using Postman?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 25-Jun-2021 12:43:00

1K+ Views

We can generate a CLI & JUNIT Newman report on Jenkins. Jenkin reports are a descriptive and categorized representation of test output. These reports help to establish a clear communication channel among members of the team and project stakeholders.Jenkins reports are available in multiple formats and can be improvised by ... Read More

How to create and save a collection in Postman?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 24-Jun-2021 16:00:45

2K+ Views

We can create and save a Collection in Postman with the steps listed below −Click on the Collections tab in the sidebar appearing to the left of the Postman application and then click on New Collection.CREATE A NEW COLLECTION pop- up should open. Enter a Collection name and fill the ... Read More

How to Monitor Collections in Postman?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 24-Jun-2021 15:25:36

256 Views

A Postman Monitor is used to execute a Collection within the Postman cloud. It is used to determine the condition and the performance of the APIs.Monitors in Postman are designed on Collections.Monitors can be set up as frequently as every five minutes and can be configured with all the requests ... Read More

How to automate google Signup form in Selenium using Python?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 08-Apr-2021 08:10:14

1K+ Views

We can automate Google Signup form with Selenium webdriver in Python. To automate this page, we have to first launch the Google Signup page and identify each element on the form.Let us have a look at the Google Signup form −Examplefrom selenium import webdriver #set chromodriver.exe path driver = webdriver.Chrome(executable_path="C:\chromedriver.exe") ... Read More

How does Selenium Webdriver handle SSL certificate in Chrome?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 08-Apr-2021 08:09:31

2K+ Views

We can handle SSL certificate with Selenium webdriver in Chrome browser. A SSL is the standardized protocol used to create a connection between the browser and server.The information exchanged via a SSL certificate is encrypted and it verifies if the information is sent to the correct server. It authenticates a ... Read More

Advertisements