同时显示几行文字

时间:2018-08-18 06:37:39

标签: r rvest

我正在取消Udemy课程,我想取消右侧的奖励措施:

enter image description here

所有这些的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

这个唯一的人刮掉了第一行,但是我想一次刮掉所有的激励措施。我该怎么办?

0 个答案:

没有答案