Does anyone know of an XPath expression which will allow me to extract all the search results returned from baidu.com?
For example, in R, I would usually do something like this this:
# load libraries
library(RCurl)
library(XML)
# get webpage
doc <- getURL("http://www.baidu.com/s?rn=100&bs=chivas+regal&f=8&wd=chivas+regal")
# html structure
html <- htmlTreeParse(doc, useInternalNodes = TRUE, error=function(...){})
# use xpath expression to get links
nodes <- getNodeSet(html, "//a[@href]")
However this only gets about 10 links, when I should have around 100. So I think this means there is something about the baidu html structure which is not clear to me.
Many thanks in advance for your time.