Click or drag to resize
BaseComponentWaitSendKeys Method (String, String, Double)
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.Base
Assembly: Blackbaud.UAT.Core (in Blackbaud.UAT.Core.dll) Version: 1.0.1304.1 (1.0.1304.1)
Syntax
public static void WaitSendKeys(
	string xPath,
	string keysToSend,
	double timeout
)

Parameters

xPath
Type: SystemString
The xPath to find the element by.
keysToSend
Type: SystemString
The String of Keys to send to the input.
timeout
Type: SystemDouble
The amount of time to try and find a displayed and enabled element to DoubleClick before throwing a WebDriverTimeoutException.
See Also