https://www.autoitx.com/doc/
在python autoit库中,一般名称对应
AutoIT | python |
---|---|
WinWaitActive | autoit.win_wait_active |
使用AutoIt Window Info (x86)
点击上访的图标,进行拖拉,到想访问的位置,注意下图两个红框中的数值,上面的框表示页面的标题和类,下面的框表示控件的类和序号(一般连起来使用)。
autoit.win_wait_active("[CLASS:Notepad]", 3)#等待3秒
#常用于切换页面后,最好加上,不然容易报错window/control cannot find
#用标题或者类名表示当前页面,一般两个方法通用
#如果报错window/control cannot find,可以尝试换一种方法表示
autoit.control_click("[CLASS:Notepad]", "Button2")
autoit.control_click("*无标题 - 记事本", "Button2")
一般以我们平时操作,会从下图上方的地址栏进行操作,这里注意可以直接从下方的文件名处,输入对应的绝对地址,如:F:\程序设计书籍\《啊哈!算法》.pdf
autoit.control_set_text("Open File", "Edit1",file_path) # 输入文件地址