Test parameter information in a test iteration.

interface TestResultParameterModel {
    actionPath?: string;
    iterationId?: number;
    parameterName?: string;
    stepIdentifier?: string;
    url?: string;
    value?: string;
}

Properties

actionPath?: string

Test step path where parameter is referenced.

iterationId?: number

Iteration ID.

parameterName?: string

Name of parameter.

stepIdentifier?: string

This is step Id of test case. For shared step, it is step Id of shared step in test case workitem; step Id in shared step. Example: TestCase workitem has two steps: 1) Normal step with Id = 1 2) Shared Step with Id = 2. Inside shared step: a) Normal Step with Id = 1 Value for StepIdentifier for First step: "1" Second step: "2;1"

url?: string

Url of test parameter. Deprecated in hosted environment.

value?: string

Value of parameter.