AutomationElement / Контекстные меню

Описание

Я пытаюсь иметь возможность взаимодействовать с контекстными меню с помощью автоматизации пользовательского интерфейса. В основном я пытаюсь:

  • сосредоточиться на AutomationElement
  • SendKeys.SendWait отправить SHIFT+F10
  • посмотрим, что всплывает

Что я вижу

Я вижу, что AutomationElement.FindAll(TreeScope.Descendants, Condition.TrueCondition) кажется, не отражает когда всплывающее контекстное меню, даже если UISpy его видит.

Любая помощь будет принята с благодарностью.

пример

Вот пример приложения, которое я запускаю в LINQPad:

void Main()
{
  var notepad = FindNotepad();
  Console.WriteLine("Pre-Context: {0}", Descendants(notepad).Count);
  TypeInto(notepad, "(+{F10})");
  Thread.Sleep(1000);

  Console.WriteLine("With Context: {0}", Descendants(notepad).Count);
  TypeInto(notepad, "{ESC}");
  Console.WriteLine("Post-Context: {0}", Descendants(notepad).Count);
}

AutomationElement FindNotepad(string title = "Untitled - Notepad")
{
  var notepadName = new PropertyCondition(AutomationElement.NameProperty, title);
  return AutomationElement.RootElement.FindFirst(TreeScope.Children, notepadName);
}

void TypeInto(AutomationElement element, string keys)
{
  element.SetFocus();
  SendKeys.SendWait(keys);
}

AutomationElementCollection Descendants(AutomationElement element)
{
  return element.FindAll(TreeScope.Subtree, Condition.TrueCondition);
}

1 ответ

Контекстное меню, открытое в Shift-F10, на самом деле является дочерним элементом корневого элемента (рабочего стола), поэтому, если вы используете Descendants(AutomationElement.RootElement).Count вместо Descendants(notepad).Count вы увидите разницу. например

Pre-Context: 2019
With Context: 2036
Post-Context: 2019
Другие вопросы по тегам