如何将表单字段中的参数从一个功能传递到另一个功能?

时间:2017-10-05 19:53:46

标签: karate

我有一个功能A:

* form field username = 'user@gire.com'
* form field password = 'usergire'

还有一个: * def token = call read ('A.feature') here我想发送usernamepassword。 我按照调用其他* .feature文件中的示例,但它不起作用?是否有可能在空手道中这样做?因为我需要在其他功能中调用A.feature并发送2个参数。感谢

1 个答案:

答案 0 :(得分:1)

仔细阅读文档:Calling other Feature files。在功能A:

* form field username = email
* form field password = password

并称之为:

* call read('A.feature') { email: 'user@gire.com', password: 'usergire' }