What would be the correct Xpath query to use to fetch data from Wikipedia into Google Sheets?
Here is an example I would like to test this with:
Wikipedia page: http://en.wikipedia.org/wiki/12_Angry_Men_(1957_film)
Data to pull: the "running time" value of "96 minutes" located in the right hand side table
Method: using the Google Sheets ImportXML function
I've tried the following, but it returns N/A:
=IMPORTXML("http://en.wikipedia.org/wiki/12_Angry_Men_(1957_film)", "//div[normalize-space() = 'Running time']/following-sibling::td")
Thanks!