Manisha
Selenium Interview Questions and Answers (Part-I)
21. How can we select elements by their attribute value using CSS Selector? Ans: We can use [attribute=value] syntax to select elements by attribute.Example: css [type=radio] This will ...
Selenium Interview Questions and Answers (Level-1)
1. What is Selenium? Ans: Selenium is a powerful open-source tool used for automating web-based applications. It supports multiple browsers, languages, and platforms. 2. What are the different ...
API Testing Interview Questions and Answers (Part-VI)
🔹 141. Verify API Localization Answer: API should respond in locale-specific formats (e.g., currency, date, language). Test with Accept-Language headers. 🔹 142. Verify API Internationalization Answer: Validate support ...
API Testing Interview Questions and Answers (Part-V)
121. Verify API Handling of Slow Requests Answer: Use tools like Postman with delay or scripts to simulate slow network conditions. Ensure the API doesn’t timeout unexpectedly and ...
API Testing Interview Questions and Answers (Level-3)
101. How do you validate Cross-Origin Resource Sharing (CORS) in APIs? Answer: CORS validation involves testing HTTP headers like Access-Control-Allow-Origin, Access-Control-Allow-Methods, and Access-Control-Allow-Headers. Use tools like Postman, curl, ...
API Testing Interview Questions and Answers (Part-IV)
91. Q: How to verify server-side validation in APIs? A: Send invalid data that should be rejected and ensure the server checks and returns detailed errors. 92. Q: ...
API Testing Interview Questions and Answers (Part-III)
71. Q: How to test caching behavior in APIs? A: Use cache headers and ensure repeated requests fetch from cache or correctly refresh when modified. 72. Q: How ...
API Testing Interview Questions and Answers (Level-2)
51. Q: How to verify that the API response contains the correct resource based on the specified currency? A: Check if the currency symbol/code in the response matches ...
API Testing Interview Questions and Answers(Part-II)
41. Q: How do you test Accept-Encoding with a value other than gzip? A: Use a different encoding (e.g., deflate) and confirm that API either compresses accordingly or ...
API Testing Interview Questions and Answers(Part-I)
21. Q: How do you verify that an API returns a success message after resource deletion? A: Send a DELETE request to the API and check if the ...