4
我可以使用編碼UI測試生成器查找網頁中的所有鏈接,或者我需要製作HTTP請求並解析HTML嗎?如何使用編碼UI測試查找網頁中的所有鏈接?
我可以使用編碼UI測試生成器查找網頁中的所有鏈接,或者我需要製作HTTP請求並解析HTML嗎?如何使用編碼UI測試查找網頁中的所有鏈接?
你可以做這樣的事情......
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);
}
}