在我的功能中,我有:
* def loc = responseHeaders['location'][10]
* def id = loc.substring(loc.lastIndexOf('/') + 1)
我想在场景大纲示例中使用 id :
Scenario Outline: fkdfslqknfd
Given url 'foo.com'
And path <bar>
When method get
......
Examples:
|bar |
|(id)|
|"id"|
|'id'|
|id |> The last example is ok.
但是'foo.com/13'
我没有收到(假设 id 是 13),而是'foo.com/id'
. 我尝试使用#,但它不起作用。我怎样才能替换这个ID?我需要以字符串格式测试这个 id。谢谢