Class WebAppManagerOptions
Defines a specific AppManagerOptions for a Web application.
Inherited Members
Namespace: Legerity.Web
Assembly: Legerity.Core.dll
Syntax
public class WebAppManagerOptions : AppManagerOptions
Constructors
| Improve this Doc View SourceWebAppManagerOptions()
Initializes a new instance of the WebAppManagerOptions class.
Declaration
public WebAppManagerOptions()
WebAppManagerOptions(WebAppDriverType, String)
Initializes a new instance of the WebAppManagerOptions class.
Declaration
public WebAppManagerOptions(WebAppDriverType driverType, string driverDirectoryPath)
Parameters
| Type | Name | Description |
|---|---|---|
| WebAppDriverType | driverType | The type of web application driver to start. |
| System.String | driverDirectoryPath | The path to the web application driver directory. |
Properties
| Improve this Doc View SourceDesiredSize
Gets or sets the desired size of the window for the web application.
The default value is 1280x800.
If Maximize is set to true, this value is ignored.
Declaration
public Size DesiredSize { get; set; }
Property Value
| Type | Description |
|---|---|
| Size |
DriverType
Gets or sets the type of web application driver to start.
Declaration
public WebAppDriverType DriverType { get; set; }
Property Value
| Type | Description |
|---|---|
| WebAppDriverType |
Maximize
Gets or sets a value indicating whether to maximize the window for the web application.
Declaration
public bool Maximize { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
Url
Gets or sets the URL of the web application to load.
Declaration
public string Url { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
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. |