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