*** Settings *** Library RequestsLibrary Library Collections Library urllib3 Library DatabaseLibrary *** Variables *** ${url} http://api-client-ztb-test.qniao.cn *** Keywords *** userlogin [Arguments] ${data} #验证码登录 Disable Warnings ${header} Create Dictionary content-type=application/json X-APP-ID=470236309865238528 Create Session ZTBT https://api-client-uec-test.qniao.cn ${header} ${data} Create Dictionary account=15014242835 captcha=888888 accountType=2 #${data} Set Variable {"accountType":2,"password":null,"account":"15014242835","captcha":"${text_code}"} ${respones} POST On Session ZTBT uec/authorize/by-captcha json=${data} log ${respones.status_code} log ${respones.json()} ${token} Get From Dictionary ${respones.json()["data"]} token Set Global Variable ${token} [Teardown] login-token [Arguments] ${token} ${header} Create Dictionary content-type=application/json X-APP-ID=470236309865238528 Create Session ZTBT ${url} ${header} ${token1} Create Dictionary loginToken=${token} ${reps} Post On Session ZTBT recycle-user-center/authorize/get/product-line-token/by/login-token json=${token1} ${gettoken} Get From Dictionary ${reps.json()["data"]} token #获取token ${userId} Get From Dictionary ${reps.json()["data"]} userId #获取用户id log ${reps.json()["data"]["token"]} Set Global Variable ${gettoken} Set Global Variable ${userId} getuserinfo #获取用户信息 ${header} Create Dictionary content-type=application/json X-APP-ID=470236309865238528 Authorization=${gettoken} Create Session baseinfo ${url} ${header} ${reps} Get On Session baseinfo recycle-service/user/get/base-info ${realName} Get From Dictionary ${reps.json()["data"]} realName #获取实名 ${userId} Get From Dictionary ${reps.json()["data"]} userId #获取用户id Set Global Variable ${realName} Set Global Variable ${userId}