How to load a object repository(using VBScript) ... very
urgent....
Answer Posted / kalyan
using
RepositoriesCollection.Add "The Path of the
Repositoryfile.tsr"
if u want to remove RepositoriesCollection.remove
if u want to remove all repositories-
RepositoriesCollection.removeall
any doubts mail 2 mskalyan.smile@gmail.com
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
unique properties of button,edit box, radio button,check box?
explain keyword driven framework with banking domain?
Why do we use "Text checkpoint" If we can make use of it in "standard checkpoint" ?
Why do we use breakpoints in QTP?
what is the diffrence bw qtp architectute and qtp framework?
i have asked earlier only one question how to test web application using QTp plz send me the answer quickly
how to know no.of mails in our g mail by using vb-script
What is recovery scenario manager? When you go for recovery scenario manager? Tell me one scenario were your used recovery scenario in your project?
Explain the views in the QTP GUI?
Explain the concept of how quicktest professional identifies object?
What if recovery scenarios is also failed for identify the alert ? (We are handling unexpected popup through recovery scenarios but if still recovery scenarios also failed than what should be the approach)
Whether qtp 9.0 supports Test director8.0
How do know the number of browsers opened?
In a flight window we have to enter the name and meal request for every passenger.In that window if we give Total passengers=1 then the Psngr1 name field and psngr1 meal request field will reflects.if we give Total passengers=2 then Psngr1 name field and psngr1 meal request field,Psngr2 name field and psngr2 meal request field and so on. how we can handle this scenerio thru Descriptive programming?
I AM TRYING PORT CODE FROM WINRUNNER TO QTP AND DON'T KNOW TO HOW TO CHECK THE ERRORS. IN WINRUNNER FUNCTION RETURNS EIGHER 0 OR -1 AGAINST WHICH RESULT CAN BE MADE PASS OR FAIL BUT IN QTP I DON'T SEE FUNCTIONS RETURNING ANY VALUE. APPRECIATE IF ANYONE COULD HELP ME CONVERTING FOLLWOING WINRUNNER CODE TO QTP. set_window("Customer Service"); rc = web_obj_get_text("Summary","#2","#4",ssn,""," ",1); if (rc != E_OK) { report_msg("[GetSubscriberSummary] Could Not get subscriber SSN; rc = "&rc); myRC = rc; } else { ssn = StripBlank(ssn); if (DEBUG) report_msg ("[GetSubscriberSummary] SSN: "&ssn); }