Debomita Bhattacharjee has Published 863 Articles

What are Scripts In Postman?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 25-Jun-2021 13:17:51

705 Views

Postman is developed on Node.js that gives dynamic characteristics to Collections and requests. We can create test suites, execute requests having changing parameters, send data in between requests, and so on.A JavaScript can be associated with a request twice. Once before the actual request has been sent(as a pre-condition script ... Read More

What is Postman Sandbox?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 25-Jun-2021 13:08:06

837 Views

Answer − Postman Sandbox is an Environment provided to execute JavaScript written as a part of the Pre-Request and Tests scripts for a request. This can be available for both Postman and Newman. Thus every script developed under the Tests or Pre-Request Scripts tab can be executed within this Sandbox.Libraries ... Read More

How to Share Session ID across Different Requests in Postman?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 25-Jun-2021 13:05:36

2K+ Views

We can share session id across different requests in Postman. We can send a cookie value obtained from a request to a different request. This can be done only if the website is similar.A particular server can identify its own cookie. This makes a cookie highly secured. The cookies are ... Read More

Selenium - Element is not clickable at point

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 25-Jun-2021 13:04:09

8K+ Views

We can get the error - Element is not clickable at point while trying to click a link in Selenium webdriver. This is common in chromedriver as the Chrome browser determines an element with point location.When the position of an element is changing and we make an attempt to click ... Read More

How to set Tests using Functional Method in Postman?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 25-Jun-2021 13:01:15

412 Views

We can set Tests using the Functional method in Postman. A test in Postman gets executed only if a Request is successful. In case a Response does not get generated, the test does not to validate it.Tests implemented in the Functional method are written within the Tests tab.Add the following ... Read More

How do I keep a session alive for long Selenium scripts in automation?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 25-Jun-2021 13:00:32

5K+ Views

We can keep a session alive for long Selenium scripts in automation. In Chrome browser, this can be achieved with the help of the ChromeOptions and Capabilities classes.Capabilities class can get the capabilities of the browser by using the method – getCapabilities. This technique is generally used for debugging a ... Read More

How to set Multiple Tests for a Request in Postman with JavaScript Method?

Debomita Bhattacharjee

Debomita Bhattacharjee

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

779 Views

We can set multiple Tests for a Request in Postman with JavaScript method. A Test in Postman gets executed only if a Request is successful. In case a Response does not get generated, a test does not to validate it.Tests implemented in the JavaScript method are written within the Tests ... Read More

How does Selenium Webdriver handle the SSL certificate in Edge?

Debomita Bhattacharjee

Debomita Bhattacharjee

Updated on 25-Jun-2021 12:58:44

1K+ Views

We can handle SSL certificates in Edge browser with Selenium webdriver. This is done with the help of the EdgeOptions class. We shall create an object of this class and set the parameter setAcceptInsecureCerts to the true value.Finally, this information has to be passed to the webdriver object to get ... Read More

How to automate instagram login page using java in selenium?

Debomita Bhattacharjee

Debomita Bhattacharjee

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

3K+ Views

We can automate Instagram login page with Selenium webdriver in Java. To achieve this, first we have to launch the Instagram login page and identify the elements like email, password and login with the findElement method and interact with them.Let us have the look at the Instagram login page −Code ... Read More

Why use Selenium WebDriver for Web Automation?

Debomita Bhattacharjee

Debomita Bhattacharjee

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

472 Views

Selenium webdriver is used widely for web automation. This because of the reasons listed below −Selenium webdriver comes without any cost and we do not need to buy a license for its usage. We can just download and start using it for automating the test cases.Selenium webdriver can be used ... Read More

Advertisements