I am having problems with model binding a test case within a test suite. The model binding for each run of the test appears successful as the correct data is displayed in the content. But when the request is being made it is still using the parameters set up in the test case.
In the test case the SendRequest step is set up so that some parameters are of Type Test Data Value, however the default value must have defined row and column numbers. These parameters are not binding to the input data so the same default data is running for each test.
Is there a way to override the row index for the getValue() method from the TestData object to correspond with the number of the currently running test? Can this be done through the UI rather than script (I can code but believe the UI is better for general use).
after you bind the testdata to the testcase in the testsuite, make sure you map them too (the window bellow).if the columns in the data have the same name with the variables name declared in the testcase, just hit ‘map all’ and katalon will automagicaly pair them, otherwise you have to map them one by one
Get value refers to a column and row of my spreadsheet. This value never varies across tests. Column 3 is From Date and each row is the different cases I want to test against.