How you know that a test case is a regression test case
Answer / nitin sharma
with the help of RTM(Requirement Tracebility Metrices) u can
track how many test cases are affected after the change has
been made in code.
Is This Answer Correct ? | 1 Yes | 0 No |
What is the extension of script and object repository files?
In a QTP project lets say there are 100+ function library and incorrectly we have duplicate some function in multiple libraries. How to find those duplicate functions and remove them?
Hi guys can any plz help me how to send fax in sample Flight Appication
how i can delete the excel process for the task manager using QTP
I am a new tester that needs to create an automatic script involving security questions. On a webpage I need to select a security question(which are random) from a drop down menu, and then input the answer as the last word from the security question. I have the script set-up to automatically select the first security question from the drop down. The problem I am having is trying to insert the security answer. How do I insert the security answer based on the selection from the security question?
write script for finding number of broken links in web page? kindly please answer my question.
3 Answers Manhattan, Oracle, Virtusa,
Synchronizing test
Explain the keyword driven framework for the window based application complete creation of library files,env file,test data,recovery file,excel file ,repository etc and as a test engineer how is ur approach
Give me brief idea about QTP automation object model?
What are accessibility check point and xml check point?
With help of object repository,we can able to write the descriptive program manually?
how to get childobject from .net application. i tried but its showing child object count zero. but window has child objects.the following script i written... pls help me how to get. set parent=SwfWindow("winodw name") CheckObjectDescription parent, SwfButton Public Function CheckObjectDescription(parent, oDesc) Set oDesc = Description.Create() oDesc("micClass:").Value ="Swfbutton" Set children = parent.ChildObjects(oDesc) cntObj=children.count msgbox(cntObj) End function