Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


I want to run my qtp scipt on the system where qtp is not
installed .I don't want to install qtp but i want that
system should use the qtp from another system in lan just
the qtp instance should be launched on that system without
having qtp installed on it .I probably know the solution
that it will be solved through RMI but how to get this
problem solved plz help i anyone know the answer

Answers were Sorted based on User's Feedback



I want to run my qtp scipt on the system where qtp is not installed .I don't want to install ..

Answer / ritesh

There is no way to do this.
You need to have QTP installed on the machine where you
want to run the tests.

Is This Answer Correct ?    3 Yes 0 No

I want to run my qtp scipt on the system where qtp is not installed .I don't want to install ..

Answer / ankur_jain

thanks jay prakash for giving the reply but what u suggested
is possible only when that remote machine have qtp installed
on it .My problem is to execute the qtp script on the remote
machine which do not have qtp installed on it .So is there
any way to run qtp script on such remote system which do not
have qtp installed on it .If there then plz let me know .I
hope now u will get exactly wat i want

Is This Answer Correct ?    0 Yes 0 No

I want to run my qtp scipt on the system where qtp is not installed .I don't want to install ..

Answer / jay prakash

I have not much idea on this but sharing what i had read on
a expert blog, please see if it helps:

'''From http://hisudhakar.spaces.live.com/blog/cns!
8DDF980C45482279!441.entry

'''' Ref:: http://qtp9.blogspot.com/2007/10/running-
automation-scripts-on-remote.html

By default when you can able execute QTP scripts on a Local
Machine. Automation Object Model is providing a facility to
execute QTP scripts on a Remote Machine.

When you use CreateObject("QuickTest.Application"), it is
giving permissions to execute scripts in local machine’s
QTP.

To execute scripts in Remote Machine use

Set qtApp = CreateObject("QuickTest.Application", "Remote
Machine Name")

Before using this statement ensure that the Distributed COM
(DCOM) Configuration Properties of the remote computer are
set to allow you to run QuickTest Professional Automation
from your computer.

Steps to Set the DCOM Configuration Properties on Remote
Machine

On the computer where you want to run the automation
script, choose
Start--> Run. The Run dialog box opens.

Enter DCOMCNFG and click OK. The Distributed COM
Configuration Properties dialog box or the Component
Services window opens (depending on your operating system)
and displays the list of COM applications available on the
computer.
Select QuickTest Professional Automation from the list and
open the Properties dialog box for the application. (Click
the Properties button or right-click and choose Properties,
depending on your operating system.)
In the QuickTest Professional Automation Properties dialog
box, click the Security tab.
In the launch permissions section, choose the custom option
and click Edit.
Use the Add and Remove options to select the network users
or groups for which you want to allow or deny permission to
launch QuickTest Professional via an automation script.
When you are finished, click OK to save your settings.
Repeat steps 5 and 6 for the configuration permissions
section to select the users or groups who can modify
QuickTest Professional configuration options via an
automation script.
In the QuickTest Professional Automation Properties dialog
box, click the Identity tab and select the interactive user
option.
Click OK to save the QuickTest Professional Automation
Properties settings.
Click OK to close the Distributed COM Configuration
Properties dialog box or the Component Services window.

Is This Answer Correct ?    1 Yes 3 No

I want to run my qtp scipt on the system where qtp is not installed .I don't want to install ..

Answer / padmajasrinath

Tools-->Options


in RUN tab check the option "Allow mercury products to run
tests and components" once if u do this u can run ur script
through QC.

Is This Answer Correct ?    2 Yes 7 No

Post New Answer

More QTP Interview Questions

Can you brief the hurdles you faced during Automation testing?

0 Answers  


In QA Testing when do you use Loadrunner vs QTP? What are the main differences between those two tools? Explain the purpose with real world scenario examples...In advance thank you!!!

0 Answers  


how to write code for to select all the checkboxs in the gmail i wrote code for my question but it didn't works any body suggest what wrong my code my code is Set chkboxDesc=Description.Create() chkboxDesc("type").value="chekbox" Set chboxcollection=Browser("name:=Gmail .*").Page("title:=Gmail .*").ChildObjects(chkboxDesc) For i=0 To chboxcollection.count-1 chboxcollection(i).set "ON" Next i was getting general run time error pls help me i am in learing stage

2 Answers  


How to handle "Java Runtime error" popup window in the web application ? Sometimes the application throws the error repeatedly... Is there any browser setting available to disable the error ?

2 Answers   TCS,


we are submitting data one form to another form.defaultly it is time period set as 5sec. but it is taken 15sec what to do

5 Answers   Covansys,


QTP Query: Hello to all, I'm getting an error (as below) when I perform descriptive programming on any Web application. "The test run cannot continue due to an unrecoverable error.The "myvar_0" object was not found in the Object Repository. Check the Object Repository to confirm that the object exists or to find the correct name for the object " But I do not have any problem when I perform the same descriptive programming on a Windows application such as Sample Application - Flight. Previosly , I had prepared a lot of scripts - both via creating the properties collection object and by giving the description in string arguments and implemented them on Flight and they're working perfectly fine.I'm using QTP Version 9.2 The sample script I have used for Web application is as below : Set myvar_0 = Description.Create 'Setting property collection object for Browser myvar_0("class").value = "Browser" myvar_0("name").value= ".*" 'Setting property collection object for Page Set myvar_1 = Description.Create myvar_1("class").value = "Page" myvar_1("name").value= ".*" 'Setting property collection object for Text box Set myvar_2 = Description.Create myvar_2("class").value = "WebEdit" myvar_2("name").value= ".*" 'Setting property collection object for Button Set myvar_3 = Description.Create myvar_3("class").value = "WebButton" myvar_2("name").value= ".*" SystemUtil.Run "C:\Program Files\Internet Explorer\iexplore.exe" Browser("myvar_0").Page("myvar_1").WebEdit("myvar_2").Set ("hello how are you ?") Browser("myvar_0").Page("myvar_1").WebButton ("myvar_3").Click Browser("myvar_0").Page("myvar_1").Sync Browser("myvar_0").Close As our application is a Web based application, I was planning to make a few changes in regards to the object names, but unfortunately I am getting the above mentioned error. Could anyone please advice me, whether it could anything to do with the run setting or anything else.I am getting the same error even while implementing on our Sample Application - Mercury Tours website. I would be grateful to anybody who can solve my problem !!

1 Answers  


Hello, Is there any way to send the test results in html format (or any other) by email using outlook after the test run ends? thank you in advance

0 Answers  


If there is a change in the object type eg: A button is changed as link, 1. How to edit that in the shared object repository. 2.What options are available to edit the object within shared object repository other than copy from loca; 3.What would be the effect of the change in Coded Scripts within QTP and Functions stored in .vbs file which are loaded and used in QTP

0 Answers   HP,


Analyzing the checpoint results?

0 Answers  


What is the difference between functional spec. and Business requirement specification?

5 Answers  


Functions call by reference and call by value. i want the diff b/n these 2 and how will be the script for this?in which situation we use these 2..?pls explain me clearly

0 Answers  


What is difference between design time and run time data table?

0 Answers  


Categories