Clicks a DOM button.
BrowserAPI.bdh
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. |
true if successful
false otherwise
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;