What are the enhancements u did after recording ur script?
Answers were Sorted based on User's Feedback
Answer / poonam
After recording script:
* Placing for loop or If loop in order to get the messages
as the operation passes or fails.
* Adding the Checkpoints in order to check the functions.
* Doing parameterization in order to using the multiple data
for more than one iteration or easy data changes.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / ycy
1.Verification by using checkpoint
2.Identify the item to be parameter
3.Split the script into actions and make it reusable actions
4.Reported the result pass/fail by using Reporter.Event
5.Adding exception handling recovery scenarios
| Is This Answer Correct ? | 0 Yes | 0 No |
Count the number of radio buttons and randomly select one.
how i will connect oracle or microsoft acess database through manually written Script
Why a framework is needed?? Plaese post your answers ASAP
WHICH functionalities of QTP used in Banking project?
How to capture a window in QTP?
Where we write the FUNCTIONS, in Expert view (or) in any textfiles like Notepad and save it in Library functions folder? How to cal that functions to our script? How to save that functions to Function generator?
what is the diff b/w assistive and mandatary rules of object repository in QTP???
how to invoke the web application through script in qtp
what is object repository?
How to get the format of a webedit class in qtp. How can i know that particular webedit accept what type of format like "mm/dd/yyyy" or "$" or Alphanumeric
what is the object properties settings in the QTP
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