name
printElements ( )
import prohtml.*;

HtmlElementFinder htmlElementFinder;

void setup(){
  //insert your url here
  htmlElementFinder = new HtmlElementFinder("http://www.yoururl.com","a");

  htmlElementFinder.printElements();
}
description
Use this method for a simple trace of all elements in the list of the parsed html document.
syntax
printElements();
returns
None
usage
Web & Application
related