Class AppiumManagerOptions
Defines a base model that represents Appium specific configuration options for the AppManager.
Inheritance
System.Object
AppiumManagerOptions
Inherited Members
Namespace: Legerity
Assembly: Legerity.Core.dll
Syntax
public abstract class AppiumManagerOptions : AppManagerOptions
Properties
| Improve this Doc View SourceAdditionalOptions
Gets or sets the additional options to apply to the AppiumOptions.
Declaration
public (string, object)[] AdditionalOptions { get; set; }
Property Value
Type | Description |
---|---|
System.ValueTuple<System.String, System.Object>[] |
AppiumOptions
Gets or sets the options to configure the Appium driver.
This property is null until the Configure() method is called. Configure() is called automatically when calling the StartApp(AppManagerOptions, Func<IWebDriver, Boolean>, Nullable<TimeSpan>, Int32) method.
Declaration
public AppiumOptions AppiumOptions { get; set; }
Property Value
Type | Description |
---|---|
AppiumOptions |
Methods
| Improve this Doc View SourceConfigure()
Configures the AppiumOptions with the specified additional options.
Declaration
public virtual void Configure()