1

我有一个功能A:

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

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

4

1 回答 1

1

仔细阅读文档:调用其他功能文件。在功能 A 中:

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

并称之为:

* call read('A.feature') { email: 'user@gire.com', password: 'usergire' }
于 2017-10-06T00:53:32.510 回答