![]() | ExtensionMethodsWaitForAttributeValue Method |
Name | Description | |
---|---|---|
![]() ![]() | WaitForAttributeValue(By, String, String, Int32, Boolean) |
Metoda ověřuje, zda má vlastnost objektu "IWebElement" požadovanou hodnotu, případně jestli se má vypsat vyjímka
|
![]() ![]() | WaitForAttributeValue(IWebElement, String, String, Int32, Boolean, String) |
Metoda ověřuje, zda má vlastnost objektu "IWebElement" požadovanou hodnotu
- Příklad použití
var randomFieldInput = By.CssSelector("...");
IWebElement randomIWebElement = driver.FindElement(randomFieldInput);
randomIWebElement.WaitForAttributeValue("value", "testValue");
|