我遇到了问题,不知道如何解决,在 Excel VBA 中,我有这段代码可以引导我浏览网站(https://indexcalculator.ftserussell.com/),但是在我更改时在网站的第 3 步通过 vba 选择的索引我可以看到它们在网页上发生了更改,但是当单击下一页按钮时,就好像它从未被单击过。
选定的指数变化:
点击获取退货后:
months = Format(DateSerial(year(Date), month(Date) - 1, 1), "m")
days = Format(DateSerial(year(Date), month(Date), 0), "d")
years = CInt(Format(DateSerial(year(Date), month(Date) - 1, 1), "yyyy")) - 1994
Application.Wait (Now + TimeValue("0:00:01"))
'If the year pops up blank that means that the base year is no longer 1994
HTMLdoc.getElementsByName("m_startDate")(0).selectedIndex = CInt(months - 1)
HTMLdoc.getElementsByName("d_startDate")(0).selectedIndex = CInt(days - 1)
HTMLdoc.getElementsByName("y_startDate")(0).selectedIndex = years
Application.Wait (Now + TimeValue("0:00:02"))
Set oButton = HTMLdoc.querySelector("a[href='javascript:submitForm(document.forms[0].action);']")
oButton.Click
Application.Wait (Now + TimeValue("0:00:01"))
Set oButton = HTMLdoc.querySelector("a[href='javascript:document.forms[0].target='_blank';submitForm('IndexDownload.aspx');']")
oButton.Click
第 4 步页面应该说是 5 月 31 日而不是 6 月 13 日,当我手动执行时,它可以工作。为什么会这样?