Posted by Albert Gareev on Feb 22, 2007
How to generate filename with a timestamp Parent page: Service Functions – System (WinRunner, TSL) public function sys_gen_file_name(in format, out fname) { auto t, src, year, date, time; format = toupper(format); if ((format != "DATE") && (format != "TIME") && (format != "DATETIME")) return(E_GENERAL_ERROR); src = time_str(); src = str_replace(src, ":", ...
Posted by Albert Gareev on Feb 21, 2007
In the code examples I present I often refer to routine functions. In my framework I have specialized libraries to call from. In my blog I maintain the similar structure. Create Folder public function sys_mk_dir(in dirpath, in dirname) { auto rc, cmd_line; cmd_line = dirpath & "\\" & dirname; rc = dos_system("MkDir " & "\"" [...] ...
Posted by Albert Gareev on Feb 10, 2007
Architectures of Test Automation by Cem Kaner Test Automation Frameworks by Carl J. Nagle Intelligent Test Automation by Harry Robinson ...