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

How to pass parameters from one feature to another for form field?

我的功能 A 具有:

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

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

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

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

并称之为:

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