test_SettingGet.py
421 Bytes
from atdd.PcPost import PcPost
class SettingGet(PcPost):
interfaceUrl = "/Assistant/Apicp/ranking/SettingGet"
def setUp(self):
self.do_login(self.host, self.mobile, self.psw, self.domain)
# 获取排名筛选条件配置接口,排名筛选条件:0:角色,1:岗位;
def test_SettingGet(self):
result = self.PcPost(self.interfaceUrl)
print(result)
return result