Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi Selenium Webdriver,

I am trying to locate remaining images in addition to the primary one provided in the of XHTML web query result page such as the following example:

<div class="main-wrap">
    <ul class="photo cfix">
        <li>
            <a id="ctl00_ctl00_Content_Content_SrchResLst_rptResult_ctl01_EliteListingTemplate_hypMainThumb" tabindex="-1" class="contain" href="/Vehicle/For-Sale/Car/CA/Los Angeles/?adid=2010035044"><img id="ctl00_ctl00_Content_Content_SrchResLst_rptResult_ctl01_EliteListingTemplate_imgMainThumb" title="15 Mary Road, Los Angeles" src="http://images.abc.com/img/2012102/15509/2010035044_1_PM.JPG?mod=121022-080000" alt="Main photo of 15 Mary Road, Los Angeles - More Details" style="border-width:0px;" /></a>
        </li> 

Below is the Java code snippet that has successfully downloaded http://images.abc.com/img/2012102/15509/2010035044_1_PM.JPG:

        URL url = new URL(http://images.abc.com/img/2012102/15509/2010035044_1_PM.JPG);   // image url
        BufferedImage bi = ImageIO.read(url);
        ImageIO.write(bi, "jpg", new File("C:\\Temp\\Fast-car.jpg"));

However, there are additional photos under the URI available but needs to be checked for their existence prior to downloading them. For instance,

   http://images.abc.com/img/2012102/15509/2010035044_2_PM.JPG,
   http://images.abc.com/img/2012102/15509/2010035044_3_PM.JPG,
   http://images.abc.com/img/2012102/15509/2010035044_4_PM.JPG

                   but not
   http://images.abc.com/img/2012102/15509/2010035044_5_PM.JPG

As a result, is there a method such as URLConnection.getContentLength() to determine its connection status / existence to avoid getting an IOException? Also wonder whether it is possible to achieve the same objective within Selenium WebDriver class instead of using Java.

Your assistance would be much appreciated.

Many thanks,

Jack

share|improve this question
You can use Selenium to check whether a String like "2010035044_5_PM.JPG" is present in the HTML source. – Dominik Oct 25 '12 at 7:20

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.