How Qtp will identifies object during run time
Answer Posted / deven
To access runtime objects we can use GETROProperty and
SETTOProperty to change the TESTOBJECT property in QTP.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
if mandatory and Assitive propertys are shows same how will u write skript in QTP window
How to indentify MS-Word objects like Menubar, Toolbar, table/columns/rows/cells etc within Word document, using QTP?
What are the steps involved in the recovery scenario wizard?
On the website, the protocol has been changed https: to https what you will do? Tell me your approach?
Hi, how can we check or avoid the memory leakage in QTP9.2?
Tell me about your project? please help me how to tell about insurance project
What are the various types of Actions in UFT?
I used child objects to get the no of weblist present in the weblist.now i need to select the items present in each weblist ?How to do so
How to get the particular property value?
How does quicktest professional identifies the object in the application?
What are the methods of the TextStream object that are used for reading from a text file?
Explain the concept of object repository and how quicktest professional (qtp) recognises objects?
1 Folders in VSS 2 In navigation script there are 100 script i want to run first 50 and 37th script also not needed to run how to do this 3 What is navigation script,Driver script, business script what we are loaded in this script 4 use of resource tab 5 Difference between verification and validation give real scenario example 6 file scripting object when to use it 7 what are the problems you are faced while testing web application 8 difference between expert view and keyword view 9 difference between QTP 8.2 and QTP 9.2 navigation frame work please answer these questions from real time working people as early as possible
I have created 3 actions in test action1, action2, action3 but I want run action 1,action 3,action2 how can you change in the actions in keyword view?
I have two For loop, first For loop does is creates a customer and input the customer info and then the second for loop within the first for loop does the follows which is capture the customer name and verify the with the data within the datatable. The problem I am coming across is that when it goes through the second time creating another customer and then verify the second customer then it creates the following during runtime. I want is to have the customer2 below Customer1 under the Customer_from_Apps. Any help will be greatly appreciate it. Customer Customer_from_Apps Customer_from_Apps1 Customer1 Customer 1 Customer2 Customer2 Window("Customer Desktop").Window("Customer Tracking (Privacy").WinObject("TreeView20WndClass").Click 92,244 runtimevalue = .VbTreeView("vbname:=AppServerTree").GetROProperty("Selectio n") Customer_Val= Datatable.GlobalSheet.AddParameter ("Customer_from_Apps",runtimevalue) row=datatable.getsheet("Global").GetRowCount For x=1 to row datatable.SetCurrentRow(x) Data_Val=Datatable.Value("Customer",dtGlobalSheet) If (trim(Customer_Val)=trim(Data_Val)) Then Reporter.ReportEvent micPass, "Customer validation successful", "Actual Value: " &Data_Val&vbcrlf& "Customer Value: " &Customer_Val else Reporter.ReportEvent micFail, "Cusotmer validation unsuccessful", "Actual Value: " &Data_Val&vbcrlf& "Customer Value: " &Customer_Val End If Next