Top "Data-driven-tests" questions

Data-driven testing (DDT) is a term used in the testing of computer software to describe testing done using a table of conditions directly as test inputs and verifiable outputs as well as the process where test environment settings and control are not hard-coded.

How many worksheets can be created in an Excel workbook for automation testing?

I am working on a data driven framework for automating test cases. I use Selenium with Java, Junit, Apachi-Poi etc …

excel selenium junit apache-poi data-driven-tests
Possible to pass parameters to TestNG DataProvider?

We would like to run some of our tests each against a set of data values, verifying that the same …

testng data-driven-tests
Data-driven tests with jUnit

What do you use for writing data-driven tests in jUnit? (My definition of) a data-driven test is a test that …

java unit-testing junit data-driven-tests
How to run a test many times with data read from .csv file (data driving)

I am trying to automate some testing for one of our web applications and I need to know how I …

c# visual-studio-2012 automated-tests coded-ui-tests data-driven-tests
Data-driven testing in NUnit?

In MSTest you can do something like: [TestMethod] [DataSource("Microsoft.VisualStudio.TestTools.DataSource.CSV", "testdata.csv", "testdata#csv", DataAccessMethod.Sequential)] …

c# .net-4.0 nunit nunit-2.5 data-driven-tests
Read data from csv file using java in webdriver

How to read data of each cell in Selenium WebDriver using Java? I have tried with following code: CSVReader reader = …

selenium-webdriver data-driven-tests
How to feed a list of lists as an argument into a Robot Framework Test Template

I have the template keyword for my "do any combination" test, where ${labels} is a list and ${versions} is a …

list robotframework data-driven-tests
pass test case parameters using nunit console

I am developing tests using Nunit and data driven testing approach. I have test method with 2 parameters: path to xlsx …

c# nunit data-driven-tests nunit-console
MemberData tests show up as one test instead of many

When you use [Theory] together with [InlineData] it will create a test for each item of inline data that is …

c# xunit.net data-driven-tests xunit2
How to check file exists in Groovy script

Workbook aWorkBook = Workbook.getWorkbook(new File("C:\Users\Response.xls")); WritableWorkbook workbook1 = Workbook.createWorkbook(new File("C:\Users\Responses.xls"), …

groovy soapui data-driven-tests data-driven