我正在尝试通过rvest进行一些Web抓取,但似乎无法识别该字段,我检查了名称,似乎是正确的。
direccion <- "https://www.bvl.com.pe/inf_cotizaciones21400_QUxJQ09SQzE.html"
form.unfilled <-html_form(read_html(direccion))
form.filled <- form.unfilled %>%
set_values("mesIni" = "01",
"anoIni" = "2016",
"mesFin" = "01",
"anoFine" = "2020")
然后我收到一条错误消息:
错误:未知的字段名称:mesIni,anoIni,mesFin,anoFine
任何帮助都会很棒
谢谢!