从功能 B 中的功能 A 检索 JWT
Retrieve a JWT from a feature A in a feature B
我正在尝试从功能 B 中的功能 A 检索 JWT。
为此,我在功能 A 中有:
# create API access for the client
Given url baseUrl
And path 'admin', 'clients', clientApiId, 'accesses', 'api', 'api-key', 'renew'
And header Authorization = 'Bearer ' + authenticationJWT
When method put
Then status 200
* def clientApiJWT = response
在功能 B 中:
# Create a process with API access
* def clientApiAccess = call read('classpath:karate/common/create-client-api-access.feature')
* clientApiJWT = clientApiAccess.clientApiJWT
使用此代码我恢复了以下错误:
感谢您的帮助
不应该是:
* def clientApiJWT = clientApiAccess.clientApiJWT
我正在尝试从功能 B 中的功能 A 检索 JWT。
为此,我在功能 A 中有:
# create API access for the client
Given url baseUrl
And path 'admin', 'clients', clientApiId, 'accesses', 'api', 'api-key', 'renew'
And header Authorization = 'Bearer ' + authenticationJWT
When method put
Then status 200
* def clientApiJWT = response
在功能 B 中:
# Create a process with API access
* def clientApiAccess = call read('classpath:karate/common/create-client-api-access.feature')
* clientApiJWT = clientApiAccess.clientApiJWT
使用此代码我恢复了以下错误:
感谢您的帮助
不应该是:
* def clientApiJWT = clientApiAccess.clientApiJWT