Class
BaseWebAiiTest.TestData

Definition

Namespace:ArtOfTest.WebAii.Design

Assembly:ArtOfTest.WebAii.Design.dll

Syntax:

cs-api-definition
public class BaseWebAiiTest.TestData

Inheritance: objectBaseWebAiiTest.TestData

Properties

IterationIndex

Get the current iteration index you are in.

Declaration

cs-api-definition
public int IterationIndex { get; }

Property Value

int

this[int]

Get the current data value for a data driven test at current iteration for a specific column.

Declaration

cs-api-definition
public object this[int column] { get; }

Parameters

column

int

The column index.

Property Value

object

The string value.

this[string]

Get the current data value for a data driven test at current iteration for a specific column.

Declaration

cs-api-definition
public object this[string column] { get; }

Parameters

column

string

The column name.

Property Value

object

The string value.