123456789101112131415161718192021 |
- *** Settings ***
- Library CustomLibrary
- Resource ../../../Utils/HttpClient.robot
- Library String
- Resource ../../../CommonConfig/Config.robot
- *** Variables ***
- ${getIdentityApplysAsyncUrl} IIdentityApplyService
- *** Keywords ***
- GetIdentityApplysAsyncPost
- [Arguments] ${token}
- ${param} Create Dictionary
- Set To Dictionary ${param} Token ${token}
- ${body} Generate Params GetIdentityApplysAsync ${param}
- Log ${body}
- Log ---开始断言验证---
- ${response} PostRequest ${host} ${getIdentityApplysAsyncUrl} ${body}
- ${res} Response Analysis ${response}
- Log ${res}
- [Return] ${res}
|