 | BaseComponentElementValueIsSet Method |
Wait until a displayed element found with the provided xPath has the expected value as its text.
If no matching element is found with the expected value, a WebDriverTimeoutException is thrown.
Namespace: Blackbaud.UAT.BaseAssembly: Blackbaud.UAT.Core (in Blackbaud.UAT.Core.dll) Version: 1.0.1304.1 (1.0.1304.1)
Syntaxpublic static void ElementValueIsSet(
string xPath,
string expectedvalue,
double secondsToWait = -1
)
Public Shared Sub ElementValueIsSet (
xPath As String,
expectedvalue As String,
Optional secondsToWait As Double = -1
)
public:
static void ElementValueIsSet(
String^ xPath,
String^ expectedvalue,
double secondsToWait = -1
)
Parameters
- xPath
- Type: SystemString
The xPath to use for finding an element. - expectedvalue
- Type: SystemString
The expected text value of the element. - secondsToWait (Optional)
- Type: SystemDouble
Timeout allowed in seconds.
See Also