getVariable

runnableScrapingSession.getVariable( String variableName )
Description
Gets the the value of the session variable named by variableName. This method should be called after the RunnableScrapingSession.scrape() method has returned.
Example

// Outputs the value of the variable "FOO" to the log.

session.log( "FOO: " + runnableScrapingSession.getVariable( "FOO" ) );