Scrape Images URLS that don't have 'alt' attributes

images_noalt_scrap(link, askRobot = FALSE)

Arguments

the URL of the web page

askRobot

logical. Should the function ask the robots.txt if we're allowed or not to scrape the web page ? Default is FALSE.

Value

a character vector of images' URL without "alt" attribute

Examples

# \donttest{

images_noalt_scrap(link = "https://www.r-consortium.org/")
#> No images without 'alt' attribute found at: https://www.r-consortium.org/
#> NULL

# }