What is difference b/w
AOM,DOM,COM
Have u ever is used ny of the models.If so why?
Answer Posted / nath t
AOM: Automated Object Model with this model we can create
QTP object. without opening QTP, we can do open Test, add
repositories, recovery scenarios, .vbs files, Datatable
(excels) etc.
DOM: Document Object Model this is come under HTML like
that. i have n't worked on this.
COM: Component Object Model with this model we can create
Excel, MS-Word, OutLook objects etc.
with this object we can do with out opening Excel
application, we can add sheet and count the rows and
columns etc.
like this way we can use these objects based on criteria
| Is This Answer Correct ? | 18 Yes | 3 No |
Post New Answer View All Answers
Which HTML specification will be adhered to? How strictly? What variations will be allowed for targeted browsers?
How does you pass optional arguments in qtp?
How do you check ticket cost and ticket number in flight application?
Explain different checkpoints in qtp.
How to export quicktest professional results to an .xls file?
What is the basic concept of quicktest professional?
What is a Patch in QTP?
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
What are the properties you would use for identifying a browser and page when using descriptive programming?
write a script to validate the content in the web application. (do it by OR method) and (do it by Descriptive method by creating a description object..
What is post recovery scenario?
There is an built in window application in qtp9.1,i.e.Flight4.0.i want to implement the recovery maneger on it.How can i do this?
In Test Directory, What are the contents in test case designing? if you prepare in excel sheet how u use thrw Test Directory?
What is the difference in testing a client-server application and a web application?
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.