OBJECT

TestRunStep

Test Run Step Type

link GraphQL Schema definition

1type TestRunStep {
2
3# Id of the Test Run Step.
4id: String
5
6# Status of the Test Run Step.
7status: StepStatus
8
9# Action of the Test Run Step.
10action: String
11
12# Data of the Test Run Step.
13data: String
14
15# Result of the Test Run Step.
16result: String
17
18# Custom Fields of the Test Run Step.
19customFields: [TestRunCustomStepField]
20
21# Comment of the Test Run Step.
22comment: String
23
24# Evidence of the Test Run Step.
25evidence: [Evidence]
26
27# Attachments of the Test Run Step.
28attachments: [Attachment]
29
30# Defects of the Test Run Step.
31defects: [String]
32
33# Actual Result of the Test Run Step.
34actualResult: String
35
36}