Description
The Help.ShowURL
method lets you display a help topic provided by a specific web page. This method launches the default web browser and navigates to the specified page.
Declaration
Help.ShowURL(URL)
URL | [in] | Required | String | |
Result | None |
Applies To
The method is applied to the following object:
Parameters
The method has the following parameter:
URL
Specifies the URL of the page to be displayed in the browser.
Result Value
None.
Remarks
The Help
object along with all its methods can only be used in the source code of script extensions. This object does not exist in TestComplete scripts.
Example
The following example demonstrates the Help.ShowURL
method usage:
JScript
// script.js
Help.ShowURL("smartbear.com");
VBScript
' script.vbs
Help.ShowURL "smartbear.com"