ClickButtonWithLabel
Click a windows button Control with a label containing the required text.
void ClickButtonWithLabel(string label);
Parameters
label:
The text of the button must contain this value.
Return Value
None
Remarks
This action operates on a standard Win32 button using the windows message BN_CLICKED
.
For buttons that do not respond to this Windows message, then another action such as LeftClick()
or a shortcut key using SendKeys(
) should be used.
Example
Control setupDialog = FindTopWindow("Page Setup", "#32770"); // find dialog by caption and window class
setupDialog.ClickButtonWithLabel("Cancel"); // click the cancel button
Related: