空手道测试中如何在控制台中打印值

时间:2019-05-14 04:47:04

标签: rest karate

我正在尝试在控制台上打印值,但看不到任何值

代码段

And prepresp = response.event.txn_count
Then print 'count is : ',  response.event.txn_count
Then print 'count is : ',  prepresp

2 个答案:

答案 0 :(得分:1)

打印操作应在测试运行后打印到控制台中提供的HTML页面。

答案 1 :(得分:1)

您的代码似乎缺少定义'prepresp'的'def'关键字

And def prepresp = response.event.txn_count 
Then print 'count is : ', response.event.txn_count 
Then print 'count is : ', prepresp

这应该有效