preload

Generate filename with a timestamp (WinRunner, TSL)

Posted by Albert Gareev on Feb 22, 2007
0
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, ":", ...

Service Functions – System (WinRunner, TSL)

Posted by Albert Gareev on Feb 21, 2007
0
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 " & "\"" [...] ...

Link-a-log: Test Automation Frameworks

Posted by Albert Gareev on Feb 10, 2007
0
Architectures of Test Automation by Cem Kaner Test Automation Frameworks by Carl J. Nagle Intelligent Test Automation by Harry Robinson ...
Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported
This work by Albert Gareev is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported.