rvest (version 1.0.4)

html_name: Get element name

Description

Get element name

Usage

html_name(x)

Value

A character vector the same length as x

Arguments

x

A document (from read_html()), node set (from html_elements()), node (from html_element()), or session (from session()).

Examples

Run this code
url <- "https://rvest.tidyverse.org/articles/starwars.html"
html <- read_html(url)

html %>%
  html_element("div") %>%
  html_children() %>%
  html_name()

Run the code above in your browser using DataCamp Workspace