What is parameterization? What is syncronization pt.?

Answers were Sorted based on User's Feedback



What is parameterization? What is syncronization pt.?..

Answer / ana

Parametrization: Checking the same operations with multiple
sets of data

Example : For checking the Username in the login window with
multiple sets of data (Characters, Special
Characters,Numbers, varying length of User Name etc)we can
parametrize the User name so that it can select separate
input each time (for characters, numbers,etc) and display
the result. This way parametrization helps you save the time
from repeating the same task with hundreds of different records.

Synchronization: Synchronization helps to handle the Time
gap problems between QTP and the appropriate application by
helping QTP to wait for the application to Invoke

Example: If the application takes 1-2 min for the data to be
rendered on the screen or for navigating to the next Screen,
QTP will display the results as Fail since in that
particular time period it was not able to fetch the records
or display the Screen, Here the Wait statements helps QTP to
wait till the particular time being mentioned to get the
records.

Is This Answer Correct ?    6 Yes 0 No

What is parameterization? What is syncronization pt.?..

Answer / thirumalareddy

parameterization is passing multiple input values instead of constant values to verify the functionality.

whenever there is a timegap between the qtp and the application process the test fails, to avoid that we have to use synchronization.
waitproperty "property name", "property value", "time"

Is This Answer Correct ?    5 Yes 0 No

What is parameterization? What is syncronization pt.?..

Answer / radhika ravishankar

QuickTest enables you to expand the scope of a basic test
or component by
replacing fixed values with parameters. This process, known
as
parameterization,it greatly increases the power and
flexibility of your test or
component.



synchronization point is that which handles anticipated
timing problems by ensuring that QT waits for some times
until the application is ready for the next step

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More QTP Interview Questions

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

0 Answers  


Tell me about userdefined functions ?

1 Answers  


I have one bitmap image in my webpage. The bit map image is moving like 1 place to 2nd place and 2nd place to 3rd place Etc… in my webpage. I wanted to write script for dynamical objects like above example. Could you please send me the answer for above query.

9 Answers   IBM,


What is meant by virtual obj and Y do v need virtual obj configuration.

4 Answers  


I have faced one issues while doing test in QTP. I have described the scenario below. 1. I have to test web application.In that i want to give input of drop down values in the application. 2. Suppose Drop down has 5 value "A,B,C,D,E".I would like to give value from data table of QTP. 3. I have changed the drop down value as variable in Keyword view and given values in data table "A,B,C,D,E" as one below one. 4. While i am running the script it could not identify the drop down value which is in Data Table.It shows message. How to make value identify by QTP?

1 Answers  






What is the difference between QTP 8.2 and QTP 9.2

1 Answers  


How comfortable are you in VB scripting?

2 Answers  


How many types of Test Plans are there...??

5 Answers  


what is the framework followed by ur company in qtp

5 Answers  


Diff between WEB APPLICATION AND CLIENT-SERVER APPLICATION?

2 Answers  


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

0 Answers  


Can any one tell me Difference between Keyword Driven Frame work and Hybrid framework? Its Urgent.

2 Answers   IBM, Wipro,


Categories