Hey, I'm trying to get a list of countries by using colly on wikipedia but for some reason its not detecting the table element, can someone help me with this?
Here's the code so far:
package main
import (
"fmt"
"github.com/gocolly/colly"
)
func main() {
c := colly.NewCollector(
colly.AllowedDomains("wikipedia.org", "en.wikipedia.org"),
)
links := make([]string, 0)
c.OnHTML("div.mw-parser-output ", func(e *colly.HTMLElement) {
e.ForEach("table.wikitable.sortable.jquery-tablesorter > tbody > tr", func(_ int, elem *colly.HTMLElement) {
fmt.Println(elem.ChildAttr("a[href]", "href"))
links = append(links, elem.ChildAttr("a[href]", "href"))
})
})
c.OnRequest(func(r *colly.Request) {
fmt.Println("Visiting", r.URL.String())
})
c.Visit("https://en.wikipedia.org/wiki/List_of_countries_and_dependencies_by_population")
fmt.Println("Found urls for", len(links), "countries.")
}