Hi,
It is possible to add a timeout on the method pm.sendRequest() please ?
My goal is to start a request (in pre-request script part) before sending the main request. But the goal of the pre-request is to open a server-sent event socket, so I have no response for that.
I tried to achieve something like below :
pm.sendRequest({
url: url,
method: 'GET',
timeout: 200
});
Thank you if you have any idea !