Hi! Using Descriptive Programming How do we get Parent
object for an object. Say, i want to get a parent object
for a "Link" in a web page. thanks
Answer Posted / k. chandra sekhar
a) 1st use the object spy with help of the object spy
collect the all properties and method and path of the links
also that objects
b) Based on the above information prepare to the descriptive
program
c) It not get what is the parent object and what are child
objects study
d) Based what you get information try to write the script
e) Other wise once recording the parents object to every
child object
f) Now study the all script then you get the good script
K.Chandra Sekhar
Senior Software Test Engineer,
XYZ Company in Hyderabad
I am taking the live project class for test projects and how
to success the interval panel Ph 91-9951458189.
(Please call only 10 AM to 3 PM)
| Is This Answer Correct ? | 0 Yes | 15 No |
Post New Answer View All Answers
While spliting an action in QTP 10.0 getting an error : "This Line is a part of Script Block.You cannot split the action on this line." how to re-solve this and split the script into actions?
What is difference between run time object and test object?
What is difference between shared and local object repository?
I want to capture data(using keyword) from msdos application using QTP?... Below is little work i could do on it... /* Set app=CreateObject("Wscript.shell") SystemUtil.run ("C:\Users\Agent\Desktop\pumpsim\PUMPSIM.EXE") Window(“PUMPSIM.EXE”).Activate wait(3) app.sendkeys "N" */ Thanks in advance...!!!
Write a QTP script to enter a keyword in to Google search engine?
Hi all, I am using windows vista, I am in the process of learning QTP. When ever I try to work with insert mode in flight application , i am getting the error of 'Operation must use an update table query, fractional truncation(null) error. Can anyone help me regarding this?
Should have experience in framework means?
How is recording done when a application is over lapping the QTP application it gives a message object not recorded
Explain sub procedure of vbscript.
what is the difference between rational rose and QTP? WHICH TOOL IS BETTER TO LEARN? PLEASE SEND ME AT sana_50218@yahoo.com sandeep@epuratech.com
Where you get the run time data table?
Hi, My name is kishan. I have good Conceptual Knowledge on QTP. In order to Boost up my Confidence Level, I want to do a Project oriented Training only on QTP in Hyderabad. Kindly Let me know which is the Best QTP Project Training Institute in Hyderabad. Thanks in Advance kishan
What is different command used in command Prompt while using QTP?
What is recovery scenario 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