简体   繁体   中英

How to Send sellect all command by ui automation c#

We are working on UI Automation for the third party software. And we are firing button by the invoke method.

AutomationElement appElement = rootElement.FindFirst(TreeScope.Children, condition);
AutomationElement Addbutton = GetElementByNameProperty(appElement, "Add");
if (Addbutton != null)
{
  ClickElement(Addbutton);
}

Now i want to fire select all or (ctrl+A) command for selecting the element of the third party software. How to possible by UI automation? or Can I fire command of some menu? for example (Edit> Select All). Can I fire select all command by the UI automation? Please help me. thanks

If you are just trying to automate sending the command Ctrl+A, you may want to check out the question below. One of the suggestions is to use SendKeys and it works for me.

How to send keys Control + A + B? (keep Control modifier "pressed")

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM