1

I would like to copy one test from one folder to another folder in Quality center using OTA/Vbscript. Any help on this much appreciated

jay_QA
  • 11
  • 1

1 Answers1

0

Are you just using QC or do you use QTP as well? If you use QTP and need to move tests from one folder to another then the easiest way is to probably just write the VBscript to achieve this.

dim sourceFolder
set sourceFolder=CreateObject("Scripting.FileSystemObject")
If sourceFolder.FileExists([path to your file(s)]) Then
sourceFolder.MoveFile "[file]", "[destination]"
End If 
Phonesis
  • 323
  • 3
  • 12