Manisha
Selenium Locator Interview Question (Level-3)
Q5. Compare XPath and CSS Selector in Selenium. Which one is better and why? Answer: Both XPath and CSS Selectors are powerful methods to locate web elements. However, ...
Selenium Locator Interview Questions (Level-2)
Q3. How is XPath used in Selenium? What is the difference between Absolute and Relative XPath? Answer: XPath (XML Path Language) is used in Selenium to navigate through ...
Selenium Locator Interview Questions (Level-1)
Q1. What are Locators in Selenium WebDriver? Explain different types. Answer: Locators in Selenium are used to identify elements on a web page. Selenium WebDriver interacts with web ...
API Testing Questions and Answers (Level-3)
Question 5: Explain the complete flow of an API automation test using a tool like Rest Assured or Postman. Answer:A typical API automation test flow includes the following ...
API Testing Questions and Answers (Level-2)
Question 3: What are the different types of testing in API testing? Answer:API testing includes multiple testing strategies to ensure complete coverage: This classification helps in designing robust ...
API Testing Questions and Answers (Level-1)
Question 1: What are the common HTTP methods used in API testing? Answer:The most commonly used HTTP methods in API testing are: Method Purpose Example Endpoint GET Fetch ...
TestNG Interview Questions and Answers (Level-3)
Ques.21: How can we create a data-driven framework using TestNG? Answer: In TestNG, a data-driven framework can be created using the @DataProvider annotation. This allows us to pass ...
TestNG Interview Questions and Answers (Level-2)
11. How can we make one test method dependent on others using TestNG? Ans. In TestNG, we can use the dependsOnMethods parameter within the @Test annotation to make ...
TestNG Interview Questions and Answers (Level-1)
Q1. What is TestNG? Answer: TestNG stands for “Test Next Generation”, a powerful open-source testing framework inspired by JUnit and NUnit. It is primarily designed to simplify automated ...
SQL Interview Questions and Answers (Part-III)
86. What is a Primary Key in SQL? Answer: A Primary Key is a constraint that uniquely identifies each record in a table. Features: Example: sql CREATE TABLE ...