How do you pass parameters in a silk test ?
For example, how do you pass parameters from test plan to test case?
What is a script? How it is executed?
script is used to recording the activities of object.for execute:in then 4test script window->recording menu->run.
I presume that you are trying to capture dynamic text from the AUT.This can by done by capturing the decelarions using the 'index' tag and then use 'getText' or 'getFullCaption' method to obtain the dynamic text.
Please refer to question 35 of QTP for the answer.
SilkTest® from Segue® is the industry’s leading functional and regression testing productfor enterprise applications, whether they are deployed in Web, .NET, Java or traditionalclient/server-based env...
through function.
for example:function function name(x datatype,y datatype)
{
---
}
If you would like to manually script then this is how we do it:Assume that 1. there is a testcase called 'test1(STRING sData)' in 'script1.t' script file2. there is a testplan called 'plan1.pln'Now, i...