How to call Datable values in the QTP program.
exp: I have two parameters like Email id and Password
this two i would like to add multiple entries in the datable
to use it.
What is the difference between Gobal/Action datatable

Answers were Sorted based on User's Feedback



How to call Datable values in the QTP program. exp: I have two parameters like Email id and Passwor..

Answer / manish

For multiple iteration we can use global data sheet.

Getting the value :-

Browser(" ").page(" ").webedit("Emailid"). set
datatable.value("Email id",dtGlobalSheet)
Browser(" ").page("
").webedit("Password")datatable.value("Password",dtGlobalSheet)
Global Sheet And Action Sheet
GlobalSheet :- Global sheet we can use for every action and
by default it run for multiple iteration depends on the
value in the global sheet.

Action Sheet :- Action sheet is for perticular action and by
default it runs only one iteration but we can change it to
run for multiple iteration depends on the value in the
action sheet from the action property.

Is This Answer Correct ?    5 Yes 2 No

How to call Datable values in the QTP program. exp: I have two parameters like Email id and Passwor..

Answer / lakshmi

Call DtValues in Qtp:-

(Ur data Present in Dt(Global/Action Sheet first u verify)
nd Then proceed with this script...

dim rc
rc=DataTable.GetSheet("Global/Action").GetRowCount
for i=1 to rc
Datatable.setCurrentRow(i)
invokeapplication "Give Flight appPath"
Dialog("Login").WinEdit("AgentName").set
DataTable("Email id","Global")
Dialog("Login").WinEdit("PWord").set
DataTable("Password","Global")
Dialog("Login").WinButton("OK").click
Window("FR").close
DataTable.SetNextRow
Next

Diff in Datatable:(As ur Req u can ...)

By Default Setting For Global sheet is:
Run For Multiple Iterations
By Default Setting For Action sheet is:
Run For One Iteration Only

Is This Answer Correct ?    2 Yes 0 No

How to call Datable values in the QTP program. exp: I have two parameters like Email id and Passwor..

Answer / xyz

datatable.rawvalue("emailid",dtglobalsheet)
datatable.rawvalue("password",actionsheet)

global represents the iteration of the test,

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More QTP Interview Questions

w is datatable

5 Answers   CTS, IBM,


How to Close all browsers in reverse order.

3 Answers   Marlabs,


how to get the data from a winedit box in vb scripting and store it in a variable if data contains "_"(i.e data is TEST_1)

3 Answers  


What is log file?How to write log file code?

2 Answers   Apps Lab, Value Labs,


How to write test cases for web applications using QTP.plz write a sample test case to show how to write.urgently needed.thanks in advance..

4 Answers   IBM,


What are the features supported by UFT?

0 Answers  


.qfl extension for which file? where vl use it

3 Answers   iFlex,


Explain the concept of object repository and how qtp recognises objects?

0 Answers  


How u call functions in QTP Function to calculate the length of characters in a word -

5 Answers  


How can I find out whether a word in a string is existed or not for example "QTP IS A POWERFULL TOOL FOR AUTOMATION" How can i find out whether "powerfull" is existed in the above string or not Could anyone answer it?

7 Answers   Livetek,


what type of test cases tou will automate?

4 Answers   Google,


Hai anyone please "Explain about Framework in QTP?"

0 Answers  


Categories