how to run the script If QTP tool not identify object in web
page
Answer Posted / nitin sharma
If QTP doesn't recognize objects then u may follow these
things:
1.Check the addins properly.
2.You can use use low level recording.
3.You can use Virtual object wizard which perofrms mapping
of non standard objects to standard objects then make QTP
to start identifying the objects.
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
For which type of projects the iterative model is not suitable?
Whether qtp 9.0 supports Test director8.0
How to release all resources file from the QTP?
Hai anyone please "Explain about Framework in QTP?"
What is test object?
Hi, I am using OutputCheckPoint and I am storing the value in the data table. The stored value for column:bedroom:"Bed:4" The another value for column:bathroom:"Bath:2 Full,1 Partial" I need only the no 4 from the first column. I need only the no 2,1 from the second column. I used split array,but it also show array(0) has the value"bed:4" ..... Even though I highlight only 4,It is seleting the full value "bed 4".How can I get only the nos Thank you Uma
we use a file extension .properties why is it used and where do we use it plz help me out with detailed explanation and navigation of how to use on the QTP 8.2?
What is qtp window?
How does quicktest professional identifies the object in the application?
I am Facing Issues with learing datepicker 1)when i first learn datepicker as current system date . 2)if i wanna runtime datepicker value it gives error
How can I use Call dlls in QTP ?
How do you send email with attachment from outlook using qtp ?
how can we test the Triggers, Cursors, Indexes while doing Database testing in DTP??
Hi How to retrieve data from web element line by line?
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