pywinauto 获取控件绝对坐标
时间: 2023-09-10 11:11:45 浏览: 478
取到网页中控件的绝对位置 Absoluteposition
可以使用 Pywinauto 的 `get_properties()` 方法获取控件的属性信息,其中包括控件的坐标信息。如果您想获取控件在屏幕上的绝对坐标,可以结合使用 `get_properties()` 方法和 `handle` 属性来实现。以下是一个示例代码:
``` python
from pywinauto import Application
# 启动应用程序
app = Application().start("notepad.exe")
# 获取主窗口句柄
main_dlg = app.UntitledNotepad
# 获取编辑框控件句柄
edit_ctrl = main_dlg.Edit
# 获取控件属性信息
ctrl_props = edit_ctrl.get_properties()
# 获取控件在屏幕上的绝对坐标
ctrl_x, ctrl_y = edit_ctrl.handle_to_client_point(0, 0)
screen_x = main_dlg.rectangle().left + ctrl_x
screen_y = main_dlg.rectangle().top + ctrl_y
print("控件在屏幕上的绝对坐标为:({}, {})".format(screen_x, screen_y))
# 关闭应用程序
app.kill()
```
该代码将启动记事本应用程序,并获取其编辑框控件的绝对坐标信息。您可以根据需要修改代码来选择其他控件并获取它们的位置信息。
阅读全文