How to click on Cortana search using coded UI

80 Views Asked by At

I tried this piece of code to click on Cortana search option on Windows 10 using Coded UI:

WinPane Desktop = new WinPane();
Desktop.TechnologyName = "MSAA";
Desktop.SearchProperties.Add(WinPane.PropertyNames.ClassName, "#32769");
Desktop.SearchProperties.Add(WinPane.PropertyNames.ClassName, "Shell_TrayWnd");            
Desktop.SearchProperties.Add(WinPane.PropertyNames.ClassName, "TrayButton", WinButton.PropertyNames.ControlType, "Button");
Mouse.Click(Desktop);

Can someone suggest me the right way for this approach? While running this test it shows "Unable to identify hidden control".

1

There are 1 best solutions below

0
On

Try

Mouse.Click(Desktop.ToPoint())

where ToPoint() is

public static Point ToPoint(this UITestControl control)
{
    var point = new Point(control.BoundingRectangle.X + control.BoundingRectangle.Width / 2,
        control.BoundingRectangle.Y + control.BoundingRectangle.Height / 2);
    return point;
}