How to Extract a HTML Table from a Web Page

 

Newbie has the capability to extract an entire table from a web page while preserving it's table layout using the GetTableAttribute() function. First, identify the table position of the data you want to extract using the Click Capture program. Second, specify the table attribute "outerHtml".

 

For example: GetTableAttribute(2, 'outerHTML');

 

Original HTML Table of a Website:

 

 

 

Extracted HTML Table using GetTableAttribute:

 

 

 

 

Newbie Web Automation