单击Excel VBA中的特定<li>标记

时间:2017-02-08 16:32:35

标签: javascript html excel-vba vba excel

我正在使用VBA Excel访问网站并尝试访问<li>类中的第三个search_tab。如何使用VBA Excel代码单击此<li>标记?

enter image description here

我已经将Internet Explorer打开为IE,并尝试使用下面的代码,但它无效。

For Each l In IE.document.getElementsByTagName("a")
    If l.href = "#SearchTab" Then
        l.Click
        Exit For
    End If
    Next

0 个答案:

没有答案