Injecting configuration and compiling...
Injecting scraper and running...
<html>
<head>
<title>Scrape this table of best selling albums</title>
</head>
<body>
<h1>Scrape this table of best selling albums</h1>
<table class="data">
<thead><tr class="tableizer-firstrow"><th>Artist</th><th>Album</th><th>Released</th><th>Empty column</th><th>Sales m</th></tr></thead><tbody>
<tr><td>Michael Jackson</td><td>Thriller</td><td>1982</td><td> </td><td>110</td></tr>
<tr><td>AC/DC</td><td>Back in Black</td><td>1980</td><td> </td><td>49</td></tr>
<tr><td>Pink Floyd</td><td>The Dark Side of the Moon</td><td>1973</td><td> </td><td>45</td></tr>
<tr><td>Whitney Houston / Various artists</td><td>The Bodyguard</td><td>1992</td><td> </td><td>44</td></tr>
<tr><td>Meat Loaf </td><td>Bat Out of Hell</td><td>1977</td><td> </td><td>43</td></tr>
<tr><td>Eagles</td><td>Their Greatest Hits (1971â€"1975)</td><td>1976</td><td> </td><td>42</td></tr>
</tbody></table>
<p>
<a class="next" href="/scraping-for-everyone/webpages/example_table_2.html">next page</a>
</p>
</body>
</html>
{'Released': '1982', 'Sales m': '110', 'Artist': 'Michael Jackson', 'Album': 'Thriller'} ------------
{'Released': '1980', 'Sales m': '49', 'Artist': 'AC/DC', 'Album': 'Back in Black'} ------------
{'Released': '1973', 'Sales m': '45', 'Artist': 'Pink Floyd', 'Album': 'The Dark Side of the Moon'} ------------
{'Released': '1992', 'Sales m': '44', 'Artist': 'Whitney Houston / Various artists', 'Album': 'The Bodyguard'} ------------
{'Released': '1977', 'Sales m': '43', 'Artist': 'Meat Loaf ', 'Album': 'Bat Out of Hell'} ------------
{'Released': '1976', 'Sales m': '42', 'Artist': 'Eagles', 'Album': u'Their Greatest Hits (1971\xc3\xa2\xe2\x82\xac"1975)'} ------------
[<Element a at 0x7f5dfc9ede10>]
https://paulbradshaw.github.io/scraping-for-everyone/webpages/example_table_2.html
<html>
<head>
<title>Scrape this table of best selling albums</title>
</head>
<body>
<h1>Scrape this table of best selling albums</h1>
<table class="data">
<thead><tr class="tableizer-firstrow"><th>Artist</th><th>Album</th><th>Released</th><th>Empty column</th><th>Sales m</th></tr></thead><tbody>
<tr><td>Various artists</td><td>Dirty Dancing</td><td>1987</td><td> </td><td>42</td></tr>
<tr><td>Fleetwood Mac</td><td>Rumours</td><td>1977</td><td> </td><td>40</td></tr>
<tr><td>Backstreet Boys</td><td>Millennium</td><td>1999</td><td> </td><td>40</td></tr>
<tr><td>Bee Gees / Various artists</td><td>Saturday Night Fever</td><td>1977</td><td> </td><td>40</td></tr>
<tr><td>Shania Twain</td><td>Come On Over</td><td>1997</td><td> </td><td>39</td></tr>
<tr><td>Led Zeppelin</td><td>Led Zeppelin IV</td><td>1971</td><td> </td><td>37</td></tr>
</tbody></table>
<p>
<a class="previous" href="/scraping-for-everyone/webpages/example_table_1.html">previous page</a>
</p>
</body>
</html>
{'Released': '1987', 'Sales m': '42', 'Artist': 'Various artists', 'Album': 'Dirty Dancing'} ------------
{'Released': '1977', 'Sales m': '40', 'Artist': 'Fleetwood Mac', 'Album': 'Rumours'} ------------
{'Released': '1999', 'Sales m': '40', 'Artist': 'Backstreet Boys', 'Album': 'Millennium'} ------------
{'Released': '1977', 'Sales m': '40', 'Artist': 'Bee Gees / Various artists', 'Album': 'Saturday Night Fever'} ------------
{'Released': '1997', 'Sales m': '39', 'Artist': 'Shania Twain', 'Album': 'Come On Over'} ------------
{'Released': '1971', 'Sales m': '37', 'Artist': 'Led Zeppelin', 'Album': 'Led Zeppelin IV'} ------------
[]