Can someone help me understand how to pass a variable to another test using JAVA SCRIPT in TEST COMPLETE?
How can I create another script (Unit2) that will use the value stored in MyFolderName created in Unit 1?
Use Case from Unit 1
<Repeat test Unit 1>
User Case from Unit 2
Please excuse me, I am just learning, and providing a sample will greatly help me understand it.
Your help is greatly appreciated.
Solved! Go to Solution.
Hello,
I advice you to create a global object holding all of your variables and then using it by Globals.myvariable.
file 1: globals.js
var
Globals = {};
Globals.myFolderName = "d:\\rootdirectory\\";
file 2 : unit1.js
//USEUNIT globals
Globals.myFolderName = "c:\\temp\\";
file 3 : unit2.js
//USEUNIT globals
//USEUNIT unit1
Log.Message("My folder is " + Globals.myFolderName); // -> c:\temp
Un sourire et ça repart
Hello,
I advice you to create a global object holding all of your variables and then using it by Globals.myvariable.
file 1: globals.js
var
Globals = {};
Globals.myFolderName = "d:\\rootdirectory\\";
file 2 : unit1.js
//USEUNIT globals
Globals.myFolderName = "c:\\temp\\";
file 3 : unit2.js
//USEUNIT globals
//USEUNIT unit1
Log.Message("My folder is " + Globals.myFolderName); // -> c:\temp
Un sourire et ça repart
Subject | Author | Latest Post |
---|---|---|