url - http://www.saramin.co.kr/zf_user/jobs/relay/view?view_type=list&rec_idx=35289352
I tried to scrape data from web(above url) using R.
When I execute codes below, it return "character(0)"
tmp <- "http://www.saramin.co.kr/zf_user/jobs/relay/view?view_type=list&rec_idx=35289352"
html <- read_html(tmp, encoding = 'utf-8')
txt <- html_nodes(html, "#content > div.wrap_recruit_view > div:nth-child(1) > div.rview_content > div.view_summary > div:nth-child(1) > div > ul.list_info.one > li") %>% html_text()
txt
#character(0)
I already read similar question from here but fail to solve my problem.