
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Debomita Bhattacharjee has Published 863 Articles

Debomita Bhattacharjee
8K+ Views
We can get a JSON field in a complex nested JSON using Rest Assured. First, we shall obtain a Response body which is in JSON format from a request. Then convert it to string.We shall send a GET request via Postman on a mock API URL and observe its Response.Using ... Read More

Debomita Bhattacharjee
5K+ Views
We can get a JSON array field in a nested JSON using Rest Assured. First, we shall obtain a Response body which is in JSON format from a request. Then convert it to string.Finally, to obtain a particular array value, we shall use the array index followed by the field ... Read More

Debomita Bhattacharjee
4K+ Views
We can get the size of an array within a nested JSON in Rest Assured. First, we shall obtain a Response body which is in JSON format from a request. Then convert it to string.Finally, to obtain JSON array size, we have to use the size method. We shall send ... Read More

Debomita Bhattacharjee
1K+ Views
We can incorporate TestNG assertions in validating Response in Rest Assured. To work with TestNG we have to add the below dependency in the pom.xml in our Maven project. The link to this dependency is available in the below link −https://mvnrepository.com/artifact/org.testng/testngTo verify a response with a TestNG assertion, we need ... Read More

Debomita Bhattacharjee
2K+ Views
We can update the value of a field in a request using Rest Assured. This can be achieved with the help of the PUT request. A PUT request is used to pass data to the server for the modification of a resource. The difference between POST and PUT is that ... Read More

Debomita Bhattacharjee
724 Views
The roles and responsibilities of QA managers in Agile organizations are listed below −Discover new avenues of QA growth after researching and analyzing data.QA managers are responsible for setting standards and guidelines on the choice of automation tools. They should define the testing methodologies and status of defects.QA managers collaborate ... Read More

Debomita Bhattacharjee
12K+ Views
We can open Chrome default profile with Selenium. To get the Chrome profile path, we need to input chrome://version/ in the Chrome browser and then press enter.We need to use the ChromeOptions class to open the default Chrome profile. We need to use the add_argument method to specify the path ... Read More

Debomita Bhattacharjee
10K+ Views
We can parse a JSON response and get a particular field from Response in Rest Assured. This is done with the help of the JSONPath class. To parse a JSON response, we have to first convert the response into a string.To obtain the response we need to use the methods ... Read More

Debomita Bhattacharjee
8K+ Views
We can extract the whole JSON as a string in Rest Assured. This is achieved with the help of the extract method. It shall extract the whole response as a string using the asString method.We shall send a GET request via Postman on a mock API, observe the Response.ExampleUsing Rest ... Read More

Debomita Bhattacharjee
695 Views
We can use Selenium webdriver for web automation. For this we need to follow the below steps −Step 1 − The Webdriver should be created. For example, WebDriver driver = new ChromeDriver();The above piece of code is used to create a webdriver instance and initiate the script execution in ... Read More