Sends a DOM mouse-move event to the specified DOM Element.
BrowserAPI.bdh
BrowserMouseMove( uTestObject : in union,
sTimer : in string optional ): boolean;
| Parameter | Description |
|---|---|
| uTestObject | The XPath locator or the handle to the DOM element. |
| 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
var
liHandle : number;
begin
BrowserStart(BROWSER_MODE_DEFAULT, 800, 600);
BrowserNavigate("http://demo.borland.com");
liHandle := BrowserFind(HANDLE_DESKTOP, "//LI");
// move the mouse to the first list item on the page
BrowserMouseMove(liHandle);
// Alternatively you can use the native function
// which also allows you to specify a relative margin
BrowserNativeMouseMove(liHandle, 5, 5);
end TMain;