carpentries-incubator / lc-webscraping

Introduction to web scraping
https://carpentries-incubator.github.io/lc-webscraping/
Other
37 stars 28 forks source link

Incomplete XPath command in "Navigating through web-page using browser console" #10

Closed charliemacquarie closed 6 years ago

charliemacquarie commented 6 years ago

Specifically in the examples immediately following the "Select the 'introduction' title" section:

Similar to Issue #6, I needed to add the "article" tag to make the $x("html/body/div/blockquote") query work. (so I changed it to: $x("/html/body/div/article/blockquote"))

libcce commented 6 years ago

@charliemacquarie this https://github.com/LibraryCarpentry/lc-webscraping/pull/15 should fix your issue?

charliemacquarie commented 6 years ago

Looks like it should fix the issue, thanks @libcce.