im trying to analyze different websites to find all of the images it contains.
Now for this im using Jsoup with the following code:
Elements imagePath = doc.select("[src]");
e.attr("abs:src")
Now when i run this on a domain name i get alot of images but if i try to run the same thing on a sub domain i get the same images
for instance the site http://www.example.com would preduce the same output as http://www.example.com/page1
Now my question is does JSoup find all images for all subsites to a domain or is it just random luck that it preduces the same output?