我正在尝试使用 VBA 将数据从 Excel 提交到在线网络表单。问题发生在我尝试选择和更新表单的*区域内。我尝试了各种选项(按 ID、名称等获取元素),但均未成功。我认为这个问题与确定适当的元素有关。我已经看到有关在 VBA 中使用 Locals 功能的建议,但我不确定如何将其用于此目的。我感觉有一些经验的人可以通过查看网站上的源代码、在 VBA 中使用 Locals 或其他一些技术来快速解决这个问题。
表单设置为所有字段均为文本,我可以毫无问题地在线输入/提交数据。
提前感谢您的任何帮助/建议。
Dim IE As Object
Sub submitFeedback3()
Application.ScreenUpdating = False
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = True
IE.Navigate "http://spreadsheetbootcamp.com/excel-efficiency-trainer-feedback/"
Application.StatusBar = "Submitting"
' Wait while IE loading...
While IE.Busy
DoEvents
Wend
**********************************************************************
IE.Document.getElementById("Form_Attempts-1372643500")(0).Value = "1"
IE.Document.getElementById("submit-1-1372643500")(0).Click
**********************************************************************
Application.StatusBar = "Form Submitted"
IE.Quit
Set IE = Nothing
Application.ScreenUpdating = True
End Sub