create_data_driven_test
Generate data-driven Robot Framework test templates from a CSV file. Outputs .robot file content for creating automated tests without execution, streamlining test automation workflows.
Instructions
Generate Robot Framework data-driven test template code. Returns .robot file content as text - does not execute.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
test_data_file | No | test_data.csv |
Input Schema (JSON Schema)
{
"properties": {
"test_data_file": {
"default": "test_data.csv",
"title": "Test Data File",
"type": "string"
}
},
"title": "create_data_driven_testArguments",
"type": "object"
}