Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find all links in web page using Coded UI Test?

Can I find all links in web page using Coded UI Test Builder, or I have to make HTTP request and parse HTML?

like image 257
regerus Avatar asked Feb 24 '23 05:02

regerus


1 Answers

You could do something like this...

        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);
            }
        }
like image 150
edance Avatar answered Mar 07 '23 13:03

edance