Scrape Table
From UBot Studio
(Difference between revisions)
Line 1: | Line 1: | ||
This command is part of the [[Browser Commands|Browser Command]] for the Professional Edition. Scrape Table Scrapes an html table element into a UBot table. | This command is part of the [[Browser Commands|Browser Command]] for the Professional Edition. Scrape Table Scrapes an html table element into a UBot table. | ||
− | + | Simply drag this command into the scripting area and choose an item within the table using the element selector option. (See [[The Selectors]] for more information) | |
+ | |||
+ | '''Table Element:''' An item selected from the targeted table for scraping. | ||
+ | |||
+ | '''Table:''' The UBot table the scraped table should be saved to. | ||
== Example == | == Example == |
Revision as of 20:05, 23 April 2013
This command is part of the Browser Command for the Professional Edition. Scrape Table Scrapes an html table element into a UBot table.
Simply drag this command into the scripting area and choose an item within the table using the element selector option. (See The Selectors for more information)
Table Element: An item selected from the targeted table for scraping.
Table: The UBot table the scraped table should be saved to.
Example
navigate("http://www.w3schools.com/html/html_tables.asp", "Wait") scrape table(<innertext="Apples">, &my table)
Running the script will cause the browser to navigate to the specified website and scrape the table on the website to a ubot table.