QTP9.1 does not support to text checkpoint in Windows
application? Is this correct?
If this is correct, what is alternative for Text checkpoint?
Answer Posted / geena
Use standard checkpoint and check the text propertiy.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What do you to script when objects are removed from application?
what type of automation is follwed in the project?
How to open a new test using quicktest professional (qtp)?
how to test use the quality control .how to verify the image verification
What are the different types of qtp test assets and their extensions?
How will you check a web application for broken links using qtp?
I need to obtain the parent of an object programatically, so if I have: winButton("aButton") I need to obtain the parent part: window("Window1").Dialog("Dialog1") so I can programatically create a string of the full name of the object to call it with an execute statement in QTP I would like to use something like: part[1] = "window(""Window1"")" part[2] = "dialog(""Dialog1"")" so I can do: exeLine = part[1]&"."&part[2]&"."&"winButton(""aButton"")" Execute exeLine Apart from keeping a record of the window/dialog hierarchy is there a parent or path function/ command Thanks Adrian
How the smart identification is used in real time?Please explain with an example
How to use parameterization in qtp?
How to change the priorities of the recovery scenario properties?
What is the difference between the keyword view and expert view?
What are the ways you can synchronize?
action contains public and private functions but do we resuable that action or not..If it is reusable How..plz tell me the ans
What are the ordinal identifiers in web page?
Hi, While recording a Jave based web application, its recording all my actions and the objects.And I have 5 WebEdit objects on the page and all are recorded. But while execution, at the 2 WebEdit object, its entering the value into the object (Its making a call to the AJAX, matching the value), when the control get out of this object the value is erased or cleared. Could anyone please help. I have recoreded 5 more scenarios where WebEdit is in the picture on different webpages and all are working fine. Here is my Script: Browser("Sign In").Page("Matching Workbench_3").WebEdit ("locationLookup").Set "0320 - SEATTLE-KM" Browser("Sign In").Page("Matching Workbench_3").WebEdit ("supplierNameLookup").Set "TRAMMO PETROLEUM INC" *** SupplierNameLookup is the object, which is haing an issue. And also I was using the SendString function, but it didnt work.