OBJECT

ResultsStep

Results Step

link GraphQL Schema definition

1type ResultsStep {
2
3# If a gherkin step, keyword of the gherkin step.
4keyword: String
5
6# Name of the step.
7name: String
8
9# Embeddings of the step.
10embeddings: [ResultsEmbedding]
11
12# Duration of the step.
13duration: Float
14
15# Error of the step.
16error: String
17
18# Status of the step.
19status: StepStatus
20
21# If a Robot step, output of the Robot step.
22log: String
23
24}