SelectorGadget

Destiny Viator

SelectorGadget Hadley Wickham 2019-11-08 SelectorGadget is a JavaScript bookmarklet that allows you to interactively figure out what css selector you need to extract desired components from a page. Installation To install it, open this page in your browser, and then drag the following link to your bookmark bar: SelectorGadget. Use […]

SelectorGadget

Hadley Wickham

2019-11-08

SelectorGadget is a JavaScript bookmarklet that allows you to interactively figure out what css selector you need to extract desired components from a page.

Installation

To install it, open this page in your browser, and then drag the following link to your bookmark bar: SelectorGadget.

Use

To use it, open the page

  1. Click on the element you want to select. SelectorGadget will make a first guess at what css selector you want. It’s likely to be bad since it only has one example to learn from, but it’s a start. Elements that match the selector will be highlighted in yellow.

  2. Click on elements that shouldn’t be selected. They will turn red. Click on elements that should be selected. They will turn green.

  3. Iterate until only the elements you want are selected. SelectorGadget isn’t perfect and sometimes won’t be able to find a useful css selector. Sometimes starting from a different element helps.

For example, imagine we want to find the actors listed on an IMDB movie page, e.g. The Lego Movie.

  1. Navigate to the page and scroll to the actors list.

  2. Click on the SelectorGadget link in the bookmarks. The SelectorGadget console will appear at the bottom of the screen, and element currently under the mouse will be highlighted in orange.

  3. Click on the element you want to select (the name of an actor). The element you selected will be highlighted in green. SelectorGadget guesses which css selector you want (.itemprop in this case), and highlights all matches in yellow.

  4. Scroll around the document to find elements that you don’t want to match and click on them. For example, we don’t to match the title of the movie, so we click on it and it turns red. The css selector updates to #titleCast .itemprop.

Once we’ve determined the css selector, we can use it in R to extract the values we want:

Finally, we can extract the text from the selected HTML nodes.

Let’s say we’re also interested in extracting the links to the actors’ pages. We can access html attributes of the selected nodes using html_attrs().

As we can see there’s only one attribute called href which contains relative url to the actor’s page. We can extract it using html_attr(), indicating the name of the attribute of interest. Relative urls can be turned to absolute urls using url_absolute().

Source Article

Next Post

Belgian Internet Service Providers Association

By bringing together not only access and service providers but also hosting and transit providers, ISPA aims to serve as a rallying point for the Internet industry so as to ensure that the potential of the Internet is used to the full, from the point of view of both consumers […]
Belgian Internet Service Providers Association