Difference between copy to action and call to action?
No Answer is Posted For this Question
Be the First to Post Answer
How will u declare a variable to access multiple actions? a)Dim b)Global c)Public d)Private
How you automate testscripts one by one or moduelwise or all at once
Explain about the quicktest professional (qtp) automation object model?
where u maintain qtp scripts in ur company
How do you export an output to a excel sheet? Ex: I get my answer by using Msgbox"..." &R. How do I displayed the result of the Msgbox (such as R) to an excel sheet? Please let me know.Thanks
How to define array in qtp?
How to handle dynamic objects in QTP?
If an application name changes frequently i.e while recording it has the name, in this case, how do qtp handles?
What are some test assets and related extensions of qtp?
i need the word "good morning" to be displayed by default whenver we click upon the blank test while opening the qtp. Could you please answer...
How to export QTP results to an ".xls" file?
While writing script using For Next Statement in QTP, I try defining the variable in Lib File I am getting syntax error whereas if I use the variable in script file, the script works fine. Can anyone help me in finding the reason behind this?. E:g Dim intStartRow (Define in Lib File----- say abc.vbs) Dim intRow (If I define this variable in Lib file I am getting Syntax error where as if I define in the script file ---- say xyz.mts the script works fine) IntStartRow=2 For intRow = intStartRow to xlWrksht.UsedRange.Rows.Count ‘Some Code here Next