我有一个不错的YouTube工具....但是一个问题:如何在Webbrowser控件中喜欢或喜欢视频。我找不到激活该按钮的正确类。注释和发送注释按钮的代码可以正常工作……但是不喜欢不喜欢...有什么想法吗???
For Each altelm As HtmlElement In WebBrowser1.Document.GetElementsByTagName("BUTTON")
If altelm.GetAttribute("classname").ToString = "yt-renderer-button" Then
altelm.Focus()
altelm.InvokeMember("click")
comment_done = True
End If
Application.DoEvents()
Next