WHAT IS THE USE OF "FUNCTION GENERATOR" IN QTP?

Answer Posted / pradeep.b

1)the use of functional generator in qtp is which lists out
the all the built in functions in qtp and helps you to
write the vb script for un known objects.
2)it is also used to reduce the typing mistakes & synta
errors.

Is This Answer Correct ?    3 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

I am sathish , i want to test the Application of JIL.org ,Mobile Emulator ,by using QTP10.0. I am trying to do testing on that Application , but Child Objects are not identified by the QTP. Please can any one help me

1424


If a button named "CLICK" is recorded in low level recording mode , what will be the values stored for "name" property of that button in object repository ?

1743


Call to copy of an action and call to existing action… i know the diff but in real project how to use..? i want live scenario.pls help me..

1281


What is regular expression?

579


How can you exit from an action?

612






What will be happen if i load object repository at run time, but it has already associated.

1260


Is it possible to merge two object repository files in qtp?

620


How many ways is to parameterize the value?

617


Give me detailed theritical explanation about keyword driven, hybrid framework, environment variables, hybrid frame work

1444


Have you done batch testing in qtp? If yes how you are doing?

507


I hav installed QTP8.2, im working on webapplication, while running the script giving error msg like "QTPro.exe generated errors and will be closed by windows. You will restart the program. An error log is being created". Pls anybody what is the problem, what i have to do for this? Thanks...

1717


can anyone tell me from where i can download qtp demo or crack version

1621


What are the technics follow in writing VB script?

1532


what is impact analysis on regression testing?

2046


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

1485