Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Perform iteration as per the number of files available in a folder
#1
Solved: 10 Years, 9 Months, 1 Week ago
Hi All,

I am a newbie in QTP. I am trying to automate some part of my test.

Please have a look on the following code.

Code:
Function readTextFromFile(pathToFile)
Set fso = createObject("Scripting.FileSystemObject")
If fso.FileExists(pathToFile) = True Then
Set f = fso.OpenTextFile(pathToFile, 1)
readTextFromFile = f.ReadAll
f.Close
End If
End Function
text = readTextFromFile("Path of file")
Set clipboard = createobject("mercury.clipboard") //Thanks to inborntester
clipboard.Clear
clipboard.SetText(text)
SwfWindow("MyApplication").SwfEditor("xmlTextBox").Type micCtrlDwn + "v" + micCtrlUp

In the above code, am reading a file and writing this to a variable "text".
Then copying this to my application text area and submits.
Similarly i want to read other files from this folder util the last file.
Like this i have five folders. If i select option 1 in my application i have to read files from 1st folder, after that i have to select option 2 in my application and then folder has to changed to 2nd folder. Will i be able to include all these 5 otpions within a program or i have to write 5 different pgm.

Do i have to use vb script or any QTP logic is there to iterate. I have aware of some terminologies like parameterization.

Your time and advices are much appreciated. Thanks in advance all..

If am posting in the wrong thread, kindly pardon.

Regards
Reply


Messages In This Thread
Perform iteration as per the number of files available in a folder - by rohit330 - 02-22-2012, 09:00 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Object not found during the 2nd iteration of an Action call in a For loop BGunay 0 861 04-23-2020, 07:08 PM
Last Post: BGunay
  Executing via create "RES"xx folder? nishitd 0 1,115 03-07-2018, 01:09 AM
Last Post: nishitd
  UFT Tool runs more than one iteration always cthossain 2 3,359 02-12-2017, 01:25 PM
Last Post: cthossain
  code for validation to create a sub folder smiley 0 1,436 10-19-2016, 10:08 PM
Last Post: smiley
  [UFT] Close opened folder robertosalemi 1 3,163 02-10-2016, 07:06 PM
Last Post: robertosalemi

Forum Jump:


Users browsing this thread: 1 Guest(s)