ContributionsMost RecentMost LikesSolutionsHTTP HEAD Request I have a HTTP request that checks the header of an image. I have set the method type to be HEAD via the dropdown. When I run my script via a loop to call this HTTP request, it changes back and forth from HEAD to GET. Is there a way to force HEAD only as I do not want to download the image. Re: Running Setup Script Bumping an old thread... Is there a way force the testcases to wait until the Setup Script finishes before executing? Re: Request Headers not being Set I am explicitly setting the values in the request form, but when the call happens, it does not pick up the value. I notice this only happens when the testcases are run in parallel mode. In sequential mode, all is good. Request Headers not being Set I am running a test suite in parallel mode. I noticed that some of the test steps are failing because the header values are not being set. I see the values set on the request form, but they do not show up in the raw. Header field in question is CAMP-SESSION. Re: Check Image size Thanks for the sniplet. For those using javascript: var url = new java.net.URL('http://YourImageURL'); var image = javax.imageio.ImageIO.read(url); log.info(image.getWidth() + "x" + image.getHeight()); Check Image size I have a HTTP request step that checks the link of an image. I am wondering if there is a way to check the resolution of the image based on that response? Solved