what is meant by keyword driven frame work can any one
answer plzzzzzzzzzzz
Answer Posted / raju
Keyword Driven Framework....
If we want to test various functionalities at a time we
prefer this framework...
Firstly we should add the objects to repository( Shared
repository is preferable)
Then we can generate/write scripts for each functionality
and save them as the library files ( .vbs files)
Then we have to associate all these library files(which are
generated to test different funtionalities) to Quick Test.
For example consider Flight application
we can generate library files for
login()
open order()
fax order()
delete order()
update order()
logout() etc..,
select case k = datatable.value("keys",1)
case A : login()
case B : open order()
case C : fax order()
case D : delete order()
case E : update order()
case F : logout()
end case
In datatable we have to add only those keys which we want
to test
Keys
A
B
C
F
It means that only login(),open order(),fax order() and
logout() libraries associated to test will be executed.
Depends on the keys provided in datatable we can
dynamically change which functionlities we want to test..
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
How will internal and external links be validated and updated? how often?
How to make qtp understand the difference amongst the same type of objects .suppose there are 5 check boxes in a page and I have to choose the 2nd one, how to do that through script?
I want to grow as a Automation Engineer,Kindly help me in clearing my interview that what interviewer looks for as a Automation Engineer. I am having three years of experience in testing.
What is system testing and what are the different types of tests you perform in system testing?
How to add verification steps to tests?
I have many listboxes in my application. I have to check whether the contents inside the listboxes are in sorted order or not..can anyone please send the code as early as possible
Can any one explain me what is the procedure to connect the remote desk by using QTP 9.2 ?
Hi, how can we check or avoid the memory leakage in QTP9.2?
In what occasion we can specify global sheet and action sheet?
What is business process testing(bpt) in qtp?
What is test object model in quicktest professional (qtp)?
How many types of actions are there in quicktest professional (qtp)?
What is an object repository?
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.
Why qtp always start action1 and does not start action?