You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rvest v 1.0.3 was working just fine a few hours ago and suddenly it stopped working. I was trying to scrap some paper titles using a gene ID on Google Scholar and it was doing a good job but now I get xml_nodeset (0)
url<- paste0("https://scholar.google.com/scholar?q=", "PF3D7_0420300")
# Fetch the HTML content of the search results pagepage<-rvest::read_html(url)
# Extract titles and publication yearstitles<-page %>%
rvest::html_nodes(".gs_rt a") %>%
rvest::html_text() %>%
trimws()
Hi @hadley
rvest v 1.0.3
was working just fine a few hours ago and suddenly it stopped working. I was trying to scrap some paper titles using a gene ID on Google Scholar and it was doing a good job but now I getxml_nodeset (0)
Even code chunk given here returns empty results:
The text was updated successfully, but these errors were encountered: