Example - Integrate Allure Report
In this lesson, we will understand the integration of Allure in a test.
We'll cover the following...
Attaching request and response in allure report
In addition to the already-discussed dependencies for Allure like allure-testng
, which adds every step of the test execution to the report, we can customize the report further and add a few additional capabilities to the report, like attaching the request and response.
Rest Assured
The following dependency will help to attach the requests and responses to the report while using Rest Assured
:
Gradle
compile
...