extractLinks method

List<String> extractLinks()

Extract all links found on the page

Implementation

List<String> extractLinks() {
  if (_htmlContent == null) {
    throw ScraperNotInitializedException();
  }

  return SmartExtractor.extractLinks(_htmlContent!);
}