Interface AutoTestSimplePythonTestStepInput

Run a python script.

interface AutoTestSimplePythonTestStepInput {
    description?: AutoTestDescription;
    id?: string;
    name?: string;
    script: string;
}

Properties

description?: AutoTestDescription

The description of this step.

id?: string

The id of this step.

name?: string

The name of this step.

script: string

The python script that should be executed.