|
To enable automation scripts to access a QuickTest computer remotely:
On the computer where you want to run the automation script, select 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 select Properties, depending on your operating system.)
In the QuickTest Professional Automation Properties dialog box, click the Security tab.
In the launch permissions section, select 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.
Creating an Application Object on a Remote Computer
Once you have set the necessary DCOM Configuration settings for a remote computer, you can specify that computer in your automation script.
In VBScript, you do this by specifying the computer name as the optional location argument of the CreateObject function. The computer name should be the same as the computer name portion of a share name. For example, to run an automation script on a computer called MyServer, you could write:
Dim qtApp
Set qtApp = CreateObject("QuickTest.Application", "MyServer")
For information on the syntax for specifying the remote computer in another language you are using, see the documentation included with your development environment or to general documentation for the programming language.
好东西 要利用起来 |
|