如何使用WebBrowser按ID或类属性获取元素?

时间:2012-02-16 15:27:35

标签: html vb.net

我知道在WebBrowser中,您可以使用Document.GetElementByIdname属性查找元素,但我想使用id或{{在网页中搜索元素1}} atributes,如何在WebBrowser中执行此操作?我想点击图片标签。

class

此外,是否可以在div上<td id="button1-cell"><img src="/static/button1.png" alt="Button 1" id="but1"></td>

1 个答案:

答案 0 :(得分:2)

GetElementById's documentation表示它按ID而不是名称获取元素。如果要按名称查找元素,可以使用

webBrowser1.Document.All("name")