我试图使用此帖Login to javascript webpage with Excel vba
中的解决方案为了我的目的,但我没有(我不是程序员只是财务人员)。你能帮我看看这个page
上的“点击”按钮Login procedure
ie.document.getElementById("b-7").Value = "7740001454"
ie.document.forms("DocumentForm").Submit
提交导致错误而无法正常工作:/
答案 0 :(得分:0)
请你试试下面的代码,因为它对我有用
Sub Temp()
With CreateObject("InternetExplorer.Application")
.Navigate "https://ppuslugi.mf.gov.pl/?link=VAT&;"
.Visible = True
Do Until .ReadyState = 4
DoEvents
Loop
DoEvents
With .document
.getElementById("b-7").Value = "7740001454"
.getElementById("b-8").Click
End With
End With
End Sub