Open
Description
https://dribbble.com/typogriff
Implementation is:
public List<String> getURLsFromPage(Document doc) {
List<String> imageURLs = new ArrayList<>();
for (Element thumb : doc.select("a.dribbble-link > picture > source")) {
// nl skips thumbnails
if ( thumb.attr("srcset").contains("teaser")) continue;
String image = thumb.attr("srcset").replace("_1x", "");
imageURLs.add(image);
}
return imageURLs;
}
Checking on the page:
Array.from(document.querySelectorAll("a.dribbble-link > picture > source"))
returns an empty list.
The site layout and pattern of the original image URL have changed. Needs work.