How get next data rows in next test case?

Is it possible in each subsequent test case to retrieve from the database successive rather than the same lines? For example, a test case that validates the creation of an account: in the first run it retrieves data from the first line on the second run from the second line. How Can I do that?

it is possible with Data Binding (https://www.katalon.com/resources-center/tutorials/data-driven-testing/) approach, however, we can achieve it if we run the whole test case/test data together at a time. Katalon Studio currently could not “remember” where it stopped if we run a case (1st line) and then stop and run another case (2nd line and so on) later.

Thanks for answer. I already know what to do :slight_smile: