我正在取消Udemy课程,我想取消右侧的奖励措施:
所有这些的css为.incentives__text
。
这是网址:
url <- read_html("https://www.udemy.com/linux-linux-security-masterclass-3-in-1/")
incentives <- list()
incentives <- url %>%
html_nodes(".incentives__item") %>% # isloate the text
html_text() # get the text
这个唯一的人刮掉了第一行,但是我想一次刮掉所有的激励措施。我该怎么办?