getLastTidyAttemptFailed

boolean scrapeableFile.getLastTidyAttemptFailed ()

Description

Indicates whether or not the most recent attempt to tidy the HTML failed.

Parameters

None

Return Values

  • true or false

Change Log

Version Description
5.5.36a Available in all editions.

Examples

Find out about the last HTML tidy attempt

if( scrapeableFile.getLastTidyAttemptFailed() )
{
        session.log( "Most recent tidy attempt failed." );
}