Open
Description
I am trying invoking an API via playwright and I am setting extraheaders via playwright = Playwright.create();
return playwright.request().newContext(new APIRequest.NewContextOptions()
.setBaseURL(TeamCityEnvironmentVariable("APIBaseUrl"))
.setExtraHTTPHeaders(headers));
and also adding request body to it via pojo classes but I am not able to see what headers and request body is set onces response is given by API.