安らぎと安心のプロジェクトがあります。
ただし、テスト レポートでは、リクエストの応答を確認するための 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 で動作するようになりました