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

BlazorApplicationOptions(String, String, String, String, Boolean, String, String, String, String) Constructor

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

Namespace: DevExpress.EasyTest.Framework

Assembly: DevExpress.ExpressApp.EasyTest.BlazorAdapter.v23.2.dll

NuGet Package: DevExpress.ExpressApp.EasyTest.BlazorAdapter

Declaration

public BlazorApplicationOptions(
    string name,
    string physicalPath,
    string url = "http://localhost:65201",
    string configuration = "EasyTest",
    bool ignoreCase = true,
    string browser = "Edge",
    string arguments = null,
    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
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.

arguments String null

Specifies the command-line arguments passed to the application when it is started.

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