Class AppManagerOptions
Defines a base model that represents configuration options for the AppManager.
Namespace: Legerity
Assembly: Legerity.Core.dll
Syntax
public abstract class AppManagerOptions : object
Properties
| Improve this Doc View SourceDriverOptions
Gets or sets the additional options to configure the driver.
Declaration
public DriverOptions DriverOptions { get; set; }
Property Value
Type | Description |
---|---|
DriverOptions |
DriverUri
Gets or sets the URI to the application driver.
For native apps, this would be the application driver URL. For web apps, this would be the path to where the driver tool exists.
Declaration
public string DriverUri { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ImplicitWait
Gets or sets the implicit wait timeout, which is the amount of time the driver should wait when searching for an element if it is not immediately present.
By default, the wait time will be 2 seconds.
Declaration
public TimeSpan ImplicitWait { get; set; }
Property Value
Type | Description |
---|---|
TimeSpan |
Methods
| Improve this Doc View SourceToString()
Returns a string that represents the current object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A string that represents the current object. |