Forum Discussion

MGN's avatar
MGN
Occasional Contributor
6 years ago
Solved

Split Parameter at Runtime with VBScript?

I don't think what I'm about to ask for is possible, but wanted to see if anyone has done this, or has potential ideas.  Current language we are utilizing is VBScript as noted in the subject.  

 

We're currently making a function that will be used to manage email notifications utilizing the built in Test Complete SendMail function.  This is so we can set default values around running SendMail usage, and report to the log if a parameter was not properly set before actually running the built in function.

 

However, this currently limits us to only specifying one attachment since we now have a default call when using this function of BuiltIn.SendMail(ToAddressFromHostFromNameFromAddressSubjectBodyFileName1).

 

What we would like to be able to do in the listed call above is pass an array as FileName1 that can then be split at run time and processed as multiple parameters so that while the call looks like above, it actually processes as BuiltIn.SendMail(ToAddressFromHostFromNameFromAddressSubjectBodyFileName1, FileName2, etc.).

 

The correct answer very well may be "no, this is impossible", but figured it can't hurt to ask.

1 Reply