如何单击将内容复制到剪贴板的页面上的超链接

时间:2017-02-12 07:40:54

标签: html vb.net href

处理跟踪用户详细信息的程序。我找到了一个网站,它给了我信息,但似乎无法自动点击将信息复制到剪贴板的超链接。这是我从inspect元素得到的:

<a href="#" class="right hide-on-small-only" id="copy_inventory" data-clipboard-text="RandomLaw's stats:THIS IS WHERE THE TARGET INFO IS DISPLAYED

For Each Element As HtmlElement In WebBrowser1.Document.GetElementsByTagName("right hide-on-small")
        If Element.OuterHtml.Contains("copy_inventory") Then
            Element.InvokeMember("click")

RandomLaw是用户名,“stats”是常量。 我一直在使用webBrowser1但是如果有更好的方法则不需要看窗口。无论我做什么,我只能返回超文本“复制”

Here is the website - 注意“复制”是我无法点击的

0 个答案:

没有答案