Questions tagged [data-driven-tests]

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.

Data-driven testing is the creation of test scripts to run together with their related data sets in a framework. The framework provides re-usable test logic to reduce maintenance and improve test coverage. Input and result (test criteria) data values can be stored in one or more central data sources or databases, the actual format and organisation can be implementation specific.

379 questions
-3
votes
1 answer

Issue while parsing JSON file in my XCUITest

JSON file : "credentials" [ { "name" : Tom Harry "email" : tomharry@abc.com "password" : tomharry123 }, { "name" : Sam Billings "email" : sambillings@abc.com "password" :…
Sumit
  • 1
  • 3
-3
votes
1 answer

I am getting Null pointer Exception while fetching data from the excel sheet

Code: public class ContactUsFormTest { WebDriver driver; @BeforeMethod public void run() { System.setProperty("webdriver.chrome.driver", "Driver Path"); driver=new…
sandeep kumar
  • 195
  • 1
  • 4
  • 20
-3
votes
1 answer

How to fix 'Object reference not set to an instance of an object'

I am trying to read data from multiple sheets in a single excel file and in the process I have been having one issue or the other. The current problem i have now is on 'Object reference not set to an instance of an object' which I get while…
Ambi
  • 53
  • 1
  • 1
  • 7
-4
votes
1 answer

Data Driven Test - Protractor

I want is to edit a profile details with passing data from a json file. Data Form having: -First Name -Last Name -Current Password -New Password -Confirm Password, etc.... I need to change only Last Name. How can I do? --Edited-- "This is the form…
Mpf
  • 1
  • 2
1 2 3
25
26