0

Java では、どのように IE ブラウザーのハンドルを取得し、ブラウザー領域の四角形を取得しますか? .Net では、UI Automationを使用してこれを実現できました。

これは私が.netで行ったコードです

AutomationElement element = AutomationElement.RootElement.FindFirst(TreeScope.Children,
    new PropertyCondition(AutomationElement.NameProperty, browserTitle+" - Windows Internet Explorer"));
element = element.FindFirst(TreeScope.Children,
    new PropertyCondition(AutomationElement.ClassNameProperty, "Frame Tab"));
element = element.FindFirst(TreeScope.Descendants,
    new PropertyCondition(AutomationElement.ClassNameProperty, "TabWindowClass"));

BrowserRect = element.Current.BoundingRectangle;

Javaを使用して同様のことを行い、ブラウザ領域の長方形を取得する方法はありますか?

4

0 に答える 0