getNonTidiedHTML

scrapeableFile.getNonTidiedHTML() (enterprise edition only)
Description
If screen-scraper has been configured to retain non-tidied HTML, this method will return the original HTML sent from the web server before it was tidied by screen-scraper. This can be useful in debugging in cases where sometimes tidying succeeds and sometimes it doesn't.
Example
// Outputs the non-tidied HTML from the scrapeable file
// to the log.
session.log( "Non-tidied HTML: " + scrapeableFile.getNonTidiedHTML() );