gpt4 book ai didi

c# - 如何使用编码的 UI 测试查找网页中的所有链接?

转载 作者:太空狗 更新时间:2023-10-30 00:35:01 25 4
gpt4 key购买 nike

我能否使用 Coded UI Test Builder 找到网页中的所有链接,或者我必须发出 HTTP 请求并解析 HTML?

最佳答案

你可以做这样的事情......

        BrowserWindow bw = BrowserWindow.Launch(new Uri("http://www.google.com"));
bw.WaitForControlReady();
UITestControl document = bw.CurrentDocumentWindow;
HtmlControl control = new HtmlControl(document);
control.SearchProperties.Add(HtmlControl.PropertyNames.ClassName, "HtmlHyperlink");
UITestControlCollection controlcollection = control.FindMatchingControls();
List<string> names = new List<string>();
foreach (UITestControl x in controlcollection)
{
if (x is HtmlHyperlink)
{
HtmlHyperlink s = (HtmlHyperlink)x;
names.Add(s.Href);
}
}

关于c# - 如何使用编码的 UI 测试查找网页中的所有链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5971662/

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