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