我有一个谷歌分析宏在Windows中运行得非常好,但我需要在MAC中使用它。 我在打开浏览器并在其中导航时遇到问题。这是我使用的代码示例,但在MAC中找不到支持:
Set HTMLDoc = oIExplorer.document
HTMLDoc.all.Email.Value = GAlogin ‘this is a string I got in another part of the code
HTMLDoc.all.passwd.Value = GApassword ‘this is a string I got in another part of the code
For Each objButton In HTMLDoc.getElementsByTagName("input")
If objButton.Type = "submit" Then
objButton.Click
Exit For
End If
Next objButton
我找到了打开和导航浏览器的方法,但没有一种方法可以支持这种代码。更具体地说,他们都没有允许getElementsByTagName
部分,也没有通过元素并点击按钮
有谁知道如何导航并在MAC中使用支持此功能的浏览器?