Extract all links found on the page
List<String> extractLinks() { if (_htmlContent == null) { throw ScraperNotInitializedException(); } return SmartExtractor.extractLinks(_htmlContent!); }