Class WebElementValueEventArgs
Provides data for events related to finding elements.
public class WebElementValueEventArgs : WebElementEventArgs
- Inheritance
-
WebElementValueEventArgs
- Inherited Members
Constructors
WebElementValueEventArgs(IWebDriver, IWebElement, string?)
Initializes a new instance of the WebElementValueEventArgs class.
public WebElementValueEventArgs(IWebDriver driver, IWebElement element, string? value)
Parameters
driver
IWebDriverThe WebDriver instance used for the action.
element
IWebElementThe element used for the action.
value
stringThe new value for the element.
Exceptions
- ArgumentNullException
If
driver
orelement
are null.
Properties
Value
Gets the Value that is written to the element.
public string? Value { get; }