在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做类似的事情并得到浏览器区域的矩形?