Testing 可以在数据驱动的机器人框架测试中使用列表吗

Testing 可以在数据驱动的机器人框架测试中使用列表吗,testing,robotframework,Testing,Robotframework,在数据驱动测试中,是否可以将项目列表传递给Robotframework关键字?(上表中忽略的字段1忽略的字段2) 将参数作为列表传递 将参数作为列表传递 *** Settings *** Resource resource_file.robot *** Keywords *** Test Template Fields [Arguments] ${required_field} ${optional_field} ${ignored_field} Setup test ${r

在数据驱动测试中,是否可以将项目列表传递给Robotframework关键字?(上表中忽略的字段1忽略的字段2

将参数作为列表传递

将参数作为列表传递

*** Settings ***
Resource  resource_file.robot

*** Keywords ***
Test Template Fields
  [Arguments]  ${required_field}  ${optional_field}  ${ignored_field}
  Setup test  ${required_field}  ${optional_field}  ${ignored_field}
  Given Some data I want to test something

*** Test Cases ***
| * Test Case * | * Test Name *   | *Required Field*  | *Optional Field*   | *Ignored Field*                                     |
| 1 Test      | Test Template Fields | A_Required_Field | An_Optional_field | **Ignored_field1  Ignored_field2** |
 [Arguments]  ${required_field}  ${optional_field}  @{ignored_field}