标签: vbscript
我在这样的网站上有一个按钮
<button> Like </button>
有谁知道如何使用VBScript查找并单击此按钮? 由于他没有身份证或其他东西,我不知道如何找到按钮。
答案 0 :(得分:1)
所以我似乎在回答自己的问题。搜索得越多,学得最快。
Set Butlike = IE.Document.getElementsByTagName("button") if btn.textContent= "Like" then btn.Click() End if