Commit 672e3ffb authored by 龚小红's avatar 龚小红

Merge branch 'Feature/20211022-gxh' into 'master'

下架专业解读接口

See merge request test-group/kejiji!152
parents 4864c900 ca5fbd55
......@@ -275,18 +275,6 @@ public class ArticalPersonCard implements Authorization {
Assert.assertNotNull(data, network.message(params,SELLERCARD_GETSELLERPROMOTEINFO,"返回数据为空",response.body().asString()));
}
// 获取互动区-专业解读
@Test(description="代理人_互动区-专业解读",priority = 13)
public void 代理人_互动区_专业解读(){
Map<String, Object> params = new HashMap<String, Object>();
params.put("scid",scid);
params.put("pageIndex",1);
params.put("pageSize",10);
Response response = network.getResponse(params,ARTICLE_ENHANCEDCOLUMN_GETCONTENTS);
boolean hasList = response.jsonPath().getInt("data.list.size()") > 0;
Assert.assertTrue(hasList, network.message(params,ARTICLE_ENHANCEDCOLUMN_GETCONTENTS,"获取专业解读列表有误",response.body().asString()));
}
// 获取互动区-互动问答
@Test(description="代理人_互动区-互动问答",priority = 14)
public void 代理人_互动区_互动问答(){
......
......@@ -306,19 +306,6 @@ public class RecommendMaterial implements Authorization {
Assert.assertNotNull(recommendReason, network.message(infoParams, ARTICLE_GETEXPINFO, "访客-获取文章推荐理由有误", response.body().asString()));
}
// 获取互动区-专业解读
@Test(description = "访客_互动区-专业解读", priority = 20)
public void 访客_互动区_专业解读() {
Map<String, Object> params = new HashMap<String, Object>();
params.put("scid", scid);
params.put("pageIndex", 1);
params.put("pageSize", 10);
Response response = network.getResponse(params, ARTICLE_ENHANCEDCOLUMN_GETCONTENTS);
boolean hasList = response.jsonPath().getInt("data.list.size()") > 0;
Assert.assertTrue(hasList, network.message(params, ARTICLE_ENHANCEDCOLUMN_GETCONTENTS, "访客-获取专业解读列表有误", response.body().asString()));
}
// 获取互动区-互动问答
@Test(description = "访客_互动区-互动问答", priority = 21)
public void 访客_互动区_互动问答() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment