 | BaseComponentWaitSendKeys Method (String, String) |
Find an element using a provided xPath, wait for it to be displayed and enabled then SendKeys directly to it.
This is intended for sending directly to input elements e.g. to bypass a native file chooser.
Namespace: Blackbaud.UAT.BaseAssembly: Blackbaud.UAT.Core (in Blackbaud.UAT.Core.dll) Version: 1.0.1304.1 (1.0.1304.1)
Syntaxpublic static void WaitSendKeys(
string xPath,
string keysToSend
)
Public Shared Sub WaitSendKeys (
xPath As String,
keysToSend As String
)
public:
static void WaitSendKeys(
String^ xPath,
String^ keysToSend
)
Parameters
- xPath
- Type: SystemString
The xPath to find the element by. - keysToSend
- Type: SystemString
The String of Keys to send to the input.
See Also