Looks like there's a bug in Jmeter's Http Samplers (both of them). If
"Download Embedded Resources" in true and "Follow Redirects" is true,
then images from the last page in redirect sequence are not
downloaded.

The bug seem to hide somewhere in sample() within the organization of
this block:

if (!areFollowingRedirects)  {
    ...
    followRedirects();
    if (isImageParser) {
          if (some checks for errors)
               ...
          else {
               downloadEmbeddedResources()
               // and this actually happens so everything looks fine
               // but doesn't download image resources (they are not seen in 
               // listeners and so on
          }
        
   }
}

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to