BrowserButtonSelect Function

Action

Clicks a DOM button.

注: This function performs the same action as BrowserClick.

Include file

BrowserAPI.bdh

Syntax

BrowserButtonSelect( uTestObject : in union,
                     sTimer      : in string optional ): boolean;
Parameter Description
uTestObject Either a locator that identifies the button or a handle to a previously found button. Throws an error if an invalid handle is used or if the locator can not be resolved.
sTimer Optional: Name of the timer used for page measurements. If this parameter is omitted, no measurements are performed.

Return value

  • true if successful

  • false otherwise

Example

benchmark SilkPerformerRecorder

use "Kernel.bdh"
use "BrowserAPI.bdh"

dcluser
  user
    VUser
  transactions
    TInit           : begin;
    TMain           : 1;

var

dclrand

dcltrans
  transaction TInit
  begin
  end TInit;

  transaction TMain
  begin
    BrowserStart(BROWSER_MODE_DEFAULT, 800, 600);
    BrowserNavigate("http://demo.borland.com/gmopost/");
    
    BrowserButtonSelect("//INPUT[@name='bSubmit']");  // select (click) the "Enter GMO OnLine" button
  end TMain;