Мне нужно получить операцию «CURL» из каждого теста «Уверенный в себе» и распечатать в консоли, если тест не пройден.Это возможно?
Для примера, конвертировать:
given().relaxedHTTPSValidation().
auth().basic("name", "password").
param("grant_type","client_credentials").
when().
post("https://test_url/oauth/token").
then().
statusCode(200);
в
curl --user name:passwoed -k -X POST \
https://test_url/oauth/token \
-H 'cache-control: no-cache' \
-H 'content-type: application/x-www-form-urlencoded' \
-d grant_type=client_credentials