我有一个功能A:
* form field username = 'user@gire.com'
* form field password = 'usergire'
还有一个:
* def token = call read ('A.feature') here
我想发送username
和password
。
我按照调用其他* .feature文件中的示例,但它不起作用?是否有可能在空手道中这样做?因为我需要在其他功能中调用A.feature并发送2个参数。感谢
答案 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' }