Manisha
Automation Testing Interview Questions and Answers (Part-III)
81. What are dependencies and how are they handled in Maven? Dependencies are external libraries required by a project. In Maven, they are specified in the pom.xml file, ...
Automation Testing Interview Questions and Answers (Level-2)
54. When you receive a new build, which test scripts do you execute first? Answer: We prioritize executing the Smoke Test suite first. Smoke tests are a subset ...
Automation Testing Interview Questions and Answers (Part-II)
Q41. What is the syntax of a basic testng.xml file? Answer: A basic testng.xml file is used to configure and organize TestNG test execution. It allows you to ...
Automation Testing Interview Questions and Answers (Part-I)
21. Where is Overriding used? Answer: Override onTestFailure() in Listener to take screenshots. 22. Where is Overloading used? Answer: Overloaded method in ContactPage: createContact(String name) and createContact(String name, ...
Automation Testing Interview Questions and Answers (Level-1)
1. What is a framework? Explain types of frameworks Answer: A framework is a set of rules or guidelines used to create and design test cases efficiently. Types ...
Authentication interview Questions & Answers(Level-3)
7. How is JWT (JSON Web Token) used in Authentication? 8. What are the supported algorithms in JWT Bearer Authentication? 9. What is the process of generating and ...
Authentication Interview Questions & Answers(Level-2)
4. How does Basic Authentication work? Answer: In Basic Authentication, the username and password are combined into a single string and encoded in Base64. This encoded string is ...
Authentication Interview Questions & Answers(Level-1)
1. What is Authentication? 2. What is Authorization? 3. What are the basic types of authentication in Postman?
API Testing Interview Questions and Answers (Part-1)
51. What is the transport method in SOAP? Answer: SOAP can use: Though HTTP POST is mainly used, HTTP GET is also technically possible but rarely used for ...
API Testing Interview Questions and Answers(Level-3)
41. What is the upper limit for a payload in the POST method? Answer: Theoretically, there is no limit on the size of the payload you can send ...