gpt4 book ai didi

c# - 如何测试页面上元素的存在?

转载 作者:行者123 更新时间:2023-11-27 22:45:01 25 4
gpt4 key购买 nike

我正在尝试使用此行单击链接:

webBrowser1.Document.GetElementsByTagName("a")[i].InvokeMember("click");

但是当该元素不在页面上时,它会给我错误消息 Value of '0' is not valid for 'index'

我先尝试测试元素的存在:

if (webBrowser1.Document.GetElementsByTagName("a") != null) {...}

但这似乎行不通。

如何检查元素是否存在?

最佳答案

显然 webBrowser1.Document.GetElementsByTagName("a") 产生一个 集合。

您的第二个示例测试 null 但这是不同的。

使用调试器查看webBrowser1.Document.GetElementsByTagName("a").Count

关于c# - 如何测试页面上元素的存在?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7997991/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com