|
@@ -1,6 +1,4 @@
|
|
|
import json
|
|
|
-from http.client import responses
|
|
|
-
|
|
|
import requests
|
|
|
from hytest.common import *
|
|
|
from pandas.io.formats.style import properties_args
|
|
@@ -1548,6 +1546,12 @@ class APIMgr():
|
|
|
headers = GSTORE['headers']
|
|
|
responses = self.s.post(f"{cfg.target_host}/entbase/behavior/show?departmentId=20365&page=1&pagesize=10&startTime=1738395151&endTime=1741017599",headers=headers)
|
|
|
return responses
|
|
|
+ #微信端获取打赏标语
|
|
|
+ def reward_text(self):
|
|
|
+ headers = GSTORE['headers']
|
|
|
+ response = self.s.get(f"{cfg.target_host_wx}/front/rewardText", headers=headers)
|
|
|
+ return response
|
|
|
+
|
|
|
|
|
|
# 添加使用人员
|
|
|
def addUsePerson(self):
|