3.2 AutomationElement 메서드 AutomationElement 클래스에는 특정 조건에 맞는 자동화 요소를 탐색하거나 어떠한 패턴에 해당하는지 검색하는 등의 작업을 할 수 있게 다양한 메서드를 제공하고 있습니다. 멤버 이름 설명 Ancestors 상위 항목을 포함 Children 지계 자식 Descendants 하위 항목 Element 자신 Parent 상위 요소(지원하지 않음) Subtree 서브 트리 [표 3.4] TreeScope 열거형 멤버 검색 조건으로 Condition은 필터링에 사용할 조건입니다. 다음은 모든 자식 요소의 개수를 구하는 로직입니다.Condition condition = new OrCondition( Condition.TrueCondition, Condition...