我们有一个宁静而放心的项目。
但是测试报告没有生成RESTQuery按钮来检查请求响应
我们查询with given().when().body().get(APIURL)
响应来了,但没有找到休息查询。
pom.xml
跑者班
package test_suite;
import cucumber.api.CucumberOptions;
import net.serenitybdd.cucumber.CucumberWithSerenity;
import org.junit.runner.RunWith;
@RunWith(CucumberWithSerenity.class)
@CucumberOptions(
features = "src/test/resources/features",
plugin = {"pretty"},
glue = {"steps"}
)
public class CucumberTestSuite {
}
api 对象
@Step
public void HTTPRequest(String ****, String ***8){
String ApiUrl = method(somestring, somestring);
response = given().when().log().body().get(ApiUrl);
//response = RestAssured.get(ApiUrl);
//response = SerenityRest.when().get(ApiUrl);
}
使用 SerenityRest 检查时出错
net.serenitybdd.core.exceptions.SerenityManagedException: net.serenitybdd.rest.decorators.request.RequestSpecificationDecorated.getDefinedFilters()Ljava/util/List;
IT 现在使用 serenity 版本 1.9.26
IT 现在使用 serenity 版本 1.9.26