*** Settings *** Library CustomLibrary Resource ../../../Utils/HttpClient.robot Resource ../../../CommonConfig/Config.robot *** Variables *** ${sendSMSVerificationCodeAsyncUrl} ILoginService *** Keywords *** SendSMSVerificationCodeAsyncPost [Arguments] ${userphone} ${param} Create Dictionary Set To Dictionary ${param} UserPhone ${userphone} ${body} Generate Params SendSMSVerificationCodeAsync ${param} Log ${body} Log ---开始断言验证--- ${response} PostRequest ${host} ${sendSMSVerificationCodeAsyncUrl} ${body} ${res} Response Analysis ${response} Log ${res} [Return] ${res}