Is it possible to use a single datapool for all my scripts? Each of the script already has an existing datapool and what I want is to not use that and instead use a master datapool. The master datapool should contain all the columns of each script.
I should also have a main script that functions as a caller to all my scripts, so the code should only be in the main script, the scripts to be called should not be modified.
For example: I have a login script which has a username and password, then an add_employee script which contains the first name and last name.
- The master datapool contains the username, password, first name and last name columns.
- The main script contains only the code for using a specified (master) datapool for all its call scripts, and the scripts to be called.
I've tried reading the code from the link below but the code needs to be inserted in every (sub)script, I think. What I need is a code in the main script that will affect all scripts to be called. Rational Functional Tester - How can I get scripts called from a parent script to use the parent's data pool?