Skip to main content
All docs
V25.1
  • .NET Framework 4.6.2+
    • The page you are viewing does not exist in the .NET 8.0+ platform documentation. This link will take you to the parent topic of the current section.

    WebApplicationOptions(String, String, Boolean, String, String, Boolean, String, String, String) Constructor

    Initializes a new instance of the WebApplicationOptions class with specified settings.

    Namespace: DevExpress.EasyTest.Framework

    Assembly: DevExpress.ExpressApp.EasyTest.SeleniumWebAdapter.v25.1.dll

    NuGet Package: DevExpress.ExpressApp.EasyTest.SeleniumWebAdapter

    Declaration

    public WebApplicationOptions(
        string name,
        string physicalPath,
        bool useIISExpress = true,
        string url = "http://localhost:65201",
        string configuration = "EasyTest",
        bool ignoreCase = true,
        string browser = "Edge",
        string webDriverPath = null,
        string browserBinaryPath = null
    )

    Parameters

    Name Type Description
    name String

    Specifies the application name.

    physicalPath String

    Specifies a path to the folder that contains the application.

    Optional Parameters

    Name Type Default Description
    useIISExpress Boolean True

    Specifies whether the IIS Express is used to run the application. If set to false, WebDev is used instead.

    url String "http://localhost:65201"

    Specifies the application’s web address.

    configuration String "EasyTest"

    Specifies a configuration to use for running tests.

    ignoreCase Boolean True

    Specifies whether the test ignores a letter case when referring to UI element names, captions, or tags.

    browser String "Edge"

    Specifies a web browser used to run tests. Available values: Chrome, Edge.

    webDriverPath String null

    Specifies a path to a web driver. Not required when a path to a web driver is added to a system PATH variable.

    browserBinaryPath String null

    Specifies a path to the web browser application. Used when running tests in a portable browser.

    See Also