我试图解决我的代码冲突。到目前为止,我遇到了一些问题,但这个问题让我陷入了困境。“动态参数 x 无法解析,将其视为静态参数”
我正在尝试在仪表中运行以下场景...
# Invalid payload structures
setup steps
* Given a service
## Invalid structures
| template | failMessage |
|--------------------------------------------|-------------------------------------|
| triage:invalidStructure_endUserIds | "endUserId" is required |
* Given I prepare a JSON request for "<template>"
* When I "post" the request
* Then I expect the response code "400"
* And I expect the response parameters
| Field | Value |
|-------------------------|---------------------|
| errorCode | 1005 |
| errorMessage | Invalid user input |
| validationFailures | <failMessage> |
期待:
1> 我希望数据表在场景级别执行。这不是直截了当的,我不得不在仪表属性中添加“allow_scenario_datatable = true”。
2> 仪表无法动态解析,我看到以下错误。“无法解析动态参数,将其视为静态参数”
任何帮助或指导都会减轻我的痛苦