PLEASE TELL ME WHEN DO YOU USE THE OBJECT SPY AT RUN TIME
Answers were Sorted based on User's Feedback
Answer / akshar jain
it cannot be used while the script is running,it can be
used to check the objects properties like file name,class
etc n use it in ur test
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / brahma
it can be used identify the any object/class/properties in
any window
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / ganesh
WHILE WRITING DESCRIPTIVE PROGRAMMING IN QTP , WE NEED TO CHECK PROJECT OBJECT PROPERTIES BY USING OBJECT SPY
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / pavi
Object spy is to view the run time and test object
properties and methods.
| Is This Answer Correct ? | 0 Yes | 2 No |
can some one help me how to compare the values from one sheet to values in another sheet? suposse i have a feild called Temp in action1 and i also have temp in action2. i want to compare the values of those two actions sheets data table? how can i do it using descriptive programming?
What is quicktest professional (qtp window?
what is the smart identification techniqu?what r the different mechanisums used in it?
can we create recorset with out using database connection in vbscript?
Explain the concept of object repository and how QTP recognizes objects?
What is difference between Quality centre and Test Director?
Through array we can execute the testcase how ? give me example
Hello, I am learning QTP. I have recorded test for Login page, i have also inserted checkpoint for Email field & when I run test it passed. But when i tried to run test by inserting 'Adding Parameter Values to a Data Table' for email & password field, it pass the first value in both the fields but after that when test run for second parameter values it displays 'Internet Explorer cannot open the Internet site, Operation aborted' & when i analyze test result it displays run time error 'Object disable'. I have also cleared all the history from IE but it is not working. Please help me. Thank you.
Hi Friends, Iam Beginner in QTP and i want to Try the software QTP. I checked the mercury site for QTP Trial version and i found QTP 9.0. The thing is that it supports windows 2000,Xp but not windows 98.And Iam using Windows 98 onlu and it's not possible for me to upgrade to windows 2000. Pls. guide me how to get the trial version of QTP which supports windows 98 Operating System The version may be 6.5 is ok for me.Thanks in Advance
What are the 3 main stages involved in testing with qtp?
Did QTP prove efficient for your project? Yes or No, explain?
I have written a code to fetch values fro access db and place in the fields. Iam using GetROProperty to fetch runtime values. Now i want to add runtime values to the access db in field v3. please help me. Its not writting in the db. Option explicit Dim con,rs,db,c Set con=createobject("adodb.connection") Set rs=createobject("adodb.recordset") con.Open "Driver={Microsoft Access Driver (*.mdb)};dbq=D:\Sales.mdb" rs.open "select * from tax",con Do while not rs.eof Browser("Sales Tax Calculator").Page("Sales Tax Calculator").WebEdit("incost").Set rs.fields("v1") Browser("Sales Tax Calculator").Page("Sales Tax Calculator").WebEdit("intax").Set rs.fields("v2") c=Browser("Sales Tax Calculator").Page("Sales Tax Calculator").WebEdit("outtax").GetROProperty("value") rs.MoveNext print c Loop Do while not rs.EOF rs.EditMode rs.Fields("v3").Value="3" rs.Update rs.MoveNext Loop Set rs=nothing Set con=nothing