所有超链接都存储在AllHyperLinks
中,但是当我尝试运行此代码时。它不会单击带有CAB D Pair
字的链接。但是,当我尝试调试(F8)
时,它将继续执行click命令。
Set AllHyperLinks = IE.document.getElementsByTagName("a")
For Each hyper_link In AllHyperLinks
If hyper_link.innerText = "CAB D Pair " Then
hyper_link.Click
Exit For
End If
Next