Using Single @DataProvider Method To Store All WebDriver Test Case Data

We have learnt how to create and store multiple @DataProvider methods In single class file called dataProvider_Repository.java and then we can use those data In different test case execution as described In THIS PAGE. Using this, We can manage data of all test cases very easily In single file and If you wants to modify test data … Read more

JUnit With Selenium WebDriver Interview Questions And Answers

Part 13 58 : Tell me main features of JUnit. Answer : JUnit features are as bellow. JUnit Is unit software testing framework. So It helps software developers to create and run unit test cases very easily. There are many different annotations available In JUnit. Using all those annotations, we can Identify and configure webdriver software test case … Read more

Store And Access All DataProviders From Single File For WebDriver Test Cases

We have already learnt how to create and use testng data providers In selenium webdriver test cases In THIS POST. Also we have used testng data providers In Selenium WebDriver Data Driven Framework creation so all you are now very familiar with testng data providers and how to use them In our automation test case creation. … Read more

Selenium WebDriver With JUnit Interview Questions With Answers Part 12

Part 12 53 : Which Is the latest version of JUnit. Answer : Current latest version of JUnit Is 4.12-beta-2. This can change In future. To check latest released version of JUnit, You can Visit JUnit Official WebSite. 54 : Tell me different JUnit annotations and Its usage. Answer : JUnit has bellow given different annotations. @Test  : @Test annotation Is useful … Read more