win32操作windows应用(未完成)

win32 脚本制作

一 、获取窗口句柄

首先获取句柄,其次扫描组件,然后对按钮和文本进行操作

安装依赖

pip install pywin32 -i https://pypi.doubanio.com/simple

扫描全部的句柄

import win32gui# GetDesktopWindow 获得代表整个屏幕的一个窗口(桌面窗口)句柄
hd = win32gui.GetDesktopWindow()# 获取所有子窗口
hwndChildList = []
win32gui.EnumChildWindows(hd, lambda hwnd, param: param.append(hwnd), hwndChildList)for hwnd in hwndChildList:print("句柄:", hwnd, "标题:", win32gui.GetWindowText(hwnd))# f.write("句柄:" + str(hwnd) + " 标题:" + win32gui.GetWindowText(hwnd) + '\n'

将句柄写入文本

lst = [1, 2, 3]
str_lst = [str(item) for item in lst]
# 假设有一个列表
my_list = ['这', '是', '一个', '测试']# 将列表中的每个元素转换为字符串,并用换行符连接
list_as_string = '\n'.join(my_list)# 打开文件进行写入
with open('output.txt', 'w', encoding='utf-8') as file:file.write(list_as_string)

最终写入

def find_all_window():hd = win32gui.GetDesktopWindow()# 获取所有子窗口hwnd_child_list = []win32gui.EnumChildWindows(hd, lambda hwnd, param: param.append(hwnd), hwnd_child_list)str_list = []for hwnd in hwnd_child_list:print("句柄:", hwnd, "标题:", win32gui.GetWindowText(hwnd))str_list.append("句柄:" + str(hwnd)+"标题:" + win32gui.GetWindowText(hwnd))# f.write("句柄:" + str(hwnd) + " 标题:" + win32gui.GetWindowText(hwnd) + '\n'# 将句柄生成文件list_as_string = '\n'.join(str_list)# 打开文件进行写入with open('output.txt', 'w', encoding='utf-8') as file:file.write(list_as_string)

在文件中查询到

句柄:267410标题:
句柄:1905680标题:
句柄:1512536标题:Import Excel File V1.0
句柄:332172标题:
句柄:70010标题:
句柄:70002标题:CWebviewHostWnd
句柄:70004标题:
句柄:70018标题:Chrome Legacy Window其中Import Excel File V1.0的句柄为
句柄:1512536标题:Import Excel File V1.0

使用句柄查找应用窗口, 并前置

# 将查询的窗口前置,handle是句柄
def preposition_windows(handle):hwnd = win32gui.FindWindow(0, win32gui.GetWindowText(handle))  # 寻找窗口if not hwnd:print("找不到该窗口")else:win32gui.SetForegroundWindow(hwnd)  # 前置窗口

完整代码

import win32gui
import win32con
import pyautogui
from pynput import keyboard, mouse
from loguru import logger
from threading import Thread
import time
import re
from openpyxl import load_workbook
from openpyxl import Workbook
from openpyxl import styles
from openpyxl.styles import *
import pandas as pd
import string
import re
import os
import datetimedef find_all_window():hd = win32gui.GetDesktopWindow()# 获取所有子窗口hwnd_child_list = []win32gui.EnumChildWindows(hd, lambda hwnd, param: param.append(hwnd), hwnd_child_list)str_list = []for hwnd in hwnd_child_list:print("句柄:", hwnd, "标题:", win32gui.GetWindowText(hwnd))str_list.append("句柄:" + str(hwnd)+"标题:" + win32gui.GetWindowText(hwnd))# f.write("句柄:" + str(hwnd) + " 标题:" + win32gui.GetWindowText(hwnd) + '\n'# 将句柄生成文件list_as_string = '\n'.join(str_list)# 打开文件进行写入with open('output.txt', 'w', encoding='utf-8') as file:file.write(list_as_string)# 将查询的窗口前置,handle是句柄
def preposition_windows(handle):hwnd = win32gui.FindWindow(0, win32gui.GetWindowText(handle))  # 寻找窗口if not hwnd:print("找不到该窗口")else:win32gui.SetForegroundWindow(hwnd)  # 前置窗口# 通过名字查询句柄
# hwnd = win32gui.FindWindow(None, "窗口标题")
if __name__ == '__main__':# 查询所有窗口,当名字查不到句柄时,使用# find_all_window()# 函数hwnd = win32gui.FindWindow(None, "frm_ImportExcel")# 显示窗口# win32gui.ShowWindow(hwnd, win32con.SW_SHOW)# win32gui.SetForegroundWindow(hwnd)  # 前置窗口handle = 1643806前置窗口preposition_windows(handle)

注意

应用名称和窗口名称不同

通过窗口名称返回句柄

import win32gui
import win32conif __name__ == '__main__':# 查询所有窗口,当名字查不到句柄时,使用# find_all_window()# 函数hwnd = win32gui.FindWindow(None, "frm_ImportExcel")# 显示窗口win32gui.ShowWindow(hwnd, win32con.SW_SHOW)win32gui.SetForegroundWindow(hwnd)  # 前置窗口print(hwnd)

二、查询窗口的控件

#Only for Windows!!!!
import win32gui as wg #pip install pypiwin32
result = []
handle = wg.FindWindow(classname, name) #classname是窗口类名,name是窗口名,可以只写一个,另一个为None,也可以两个都写
def callback(handle, res):result.append(handle)return True
wg.EnumChildWindows(handle, callback, None)
#result就是控件名

获取树形控件的句柄

获取活动窗口的句柄

# 获取当前活动窗口句柄
hParent = win32gui.GetForegroundWindow()
# 获取TreeView句柄
hTreeView = win32gui.FindWindowEx(hParent, 0, "SysTreeView", None)
# 获取选中项的标题
selectedIndex = win32gui.SendMessage(hTreeView, win32con.TVM_GETNEXTITEM, win32con.TVGN_CARET, 0)
title = win32gui.SendMessage(hTreeView, win32con.TVM_GETITEMTEXT, selectedIndex, buffer)

在这段代码中,selectedIndex是选中项的索引,title是选中项的标题。win32gui.SendMessage函数用于发送消息给TreeView控件,win32con.TVM_GETNEXTITEM和win32con.TVM_GETITEMTEXT是获取下一个项和获取项文本的消息常量。win32con.TVGN_CARET表示获取当前选中项的常量

通过spy++获取类名,然后通过

# 获取TreeView类名获取句柄
hTreeView = win32gui.FindWindowEx(hParent, 0, "SysTreeView", None)

三、通过Send Message对不同控件进行操作

完整代码

import win32gui
import win32con
import win32api
import pyautogui
from pynput import keyboard, mouse
from loguru import logger
from threading import Thread
import time
import re
from openpyxl import load_workbook
from openpyxl import Workbook
from openpyxl import styles
from openpyxl.styles import *
import pandas as pd
import string
import re
import os
import datetime
import timedef find_all_window():hd = win32gui.GetDesktopWindow()# 获取所有子窗口hwnd_child_list = []win32gui.EnumChildWindows(hd, lambda hwnd, param: param.append(hwnd), hwnd_child_list)str_list = []for hwnd in hwnd_child_list:print("句柄:", hwnd, "标题:", win32gui.GetWindowText(hwnd))str_list.append("句柄:" + str(hwnd) + "标题:" + win32gui.GetWindowText(hwnd))# f.write("句柄:" + str(hwnd) + " 标题:" + win32gui.GetWindowText(hwnd) + '\n'# 将句柄生成文件list_as_string = '\n'.join(str_list)# 打开文件进行写入with open('output.txt', 'w', encoding='utf-8') as file:file.write(list_as_string)# 将查询的窗口前置,handle是句柄
def preposition_windows(handle):hwnd = win32gui.FindWindow(0, win32gui.GetWindowText(handle))  # 寻找窗口if not hwnd:print("找不到该窗口")else:win32gui.SetForegroundWindow(hwnd)  # 前置窗口def find_control(handle):result = []# class_name是窗口类名,name是窗口名,可以只写一个,另一个为None,也可以两个都写# handle = wg.FindWindow(class_name, name)def callback(handle, res):result.append(str(handle) + ": " + win32gui.GetWindowText(handle))return Truewin32gui.EnumChildWindows(handle, callback, None)return result# result就是控件名if __name__ == '__main__':# 查询所有窗口,当名字查不到句柄时,使用# find_all_window()# 函数hwnd = win32gui.FindWindow(None, "frm_ImportExcel")# 验证是否找到窗口win32gui.ShowWindow(hwnd, win32con.SW_SHOW)win32gui.SetForegroundWindow(hwnd)  # 前置窗口print(hwnd)# 查找矩形容器hTreeView = win32gui.FindWindowEx(hwnd, 0, "TRzSizePanel", None)# 查找panel中的树形组件hTreeView2 = win32gui.FindWindowEx(hTreeView, 0, "TRzTreeView", None)# 模拟点击,点开树形组件position = win32api.MAKELONG(0, 0)  # x,y为点击点相对于该窗口的坐标win32api.SendMessage(hTreeView2, win32con.WM_LBUTTONDOWN, win32con.MK_LBUTTON, position)  # 向窗口发送模拟鼠标点# win32api.SendMessage(hTreeView2, win32con.WM_LBUTTONDOWN, win32con.MK_LBUTTON, position)  # 向窗口发送模拟鼠标点# 睡眠60秒time.sleep(3)# 选中零售销售单,TreeView控制position = win32api.MAKELONG(154, -180)  # x,y为点击点相对于该窗口的坐标win32api.SendMessage(hTreeView2, win32con.WM_LBUTTONDOWN, win32con.MK_LBUTTON, position)  # 向窗口发送模拟鼠标点# 选中工具, ToolBar控制result = find_control(hTreeView2)list_as_string = '\n'.join(result)print(list_as_string)

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/web/9415.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Blazor/Hybird 触屏下单程序调优笔记

环境 Blazor Net8.0 FreeSql Bootstrap Blazor 组件 以下都是自己瞎琢磨的和官网资料搬运,肯定有不少错漏和不合理的地方,非常希望各位大佬评论区给我建议和意见. 1. 组件化需要提升渲染性能的组件,例如触摸屏显示每个商品下单数量的商品列表 避免不必要地呈现组件子树, 执…

QT-小项目:连接MY SQL数据库实现登录(下一章实现登录注册账号和忘记密码功能)

一、环境准备 1、下载MYSQL 64位,安装完成,制作简易数据库教程如下: MY SQL安装 2、QT 编译器使用 二、实现工程目录(基于上一章基础上) 三、源程序增加内容如下: login.cpp 增加头文件: #in…

《TAM》论文笔记(上)

原文链接 [2005.06803] TAM: Temporal Adaptive Module for Video Recognition (arxiv.org) 原文代码 GitHub - liu-zhy/temporal-adaptive-module: TAM: Temporal Adaptive Module for Video Recognition 原文笔记 What: TAM: Temporal Adaptive Module for …

内网安全综合管理系统是什么 | 好用的内网安全管理系统有哪些

内网安全综合管理系统是指一种集成终端管理、网络管理、内容管理、资产管理等功能的综合性安全管理系统。它主要对内网上的主机进行统一安全管理,包括对网络主机用户操作实施监督控制,并对主机中的安全软件(如主机入侵监测系统、主机防火墙和…

关于提高 PHP 性能

解锁 PHP 性能:优化你的 Web 应用 在当今数字化世界中,Web 应用的性能对用户体验至关重要。作为最流行的服务器端脚本语言之一,PHP 在构建 Web 应用方面拥有广泛的应用。然而,PHP 应用的性能优化仍然是许多开发者关注的焦点之一。…

5 Spring 事务管理

目录 1.概述 2.事务特性:ACID 3.Spring 框架的事务管理支持两种方式 编程式事务 申明式事务 4.Spring 事务管理 API 事务管理器接口 Spring 的回滚方式 事务定义接口 事务的四种隔离级别 事务的七种传播行为 5.事务注解例子: Transactianal…

springboot+vue+mybatis警情高发智能灯箱+PPT+论文+讲解+售后

时代在飞速进步,每个行业都在努力发展现在先进技术,通过这些先进的技术来提高自己的水平和优势,警情高发智能灯箱当然不能排除在外。警情高发智能灯箱是在实际应用和软件工程的开发原理之上,运用微信开发者、java语言以及SpringBo…

如何获得一个Oracle 23ai数据库(docker容器)

准确的说,是Oracle 23ai Free Developer版,因为企业版目前只在云上(OCI和Azure)和ECC上提供。 方法包括3种,本文介绍第3种: Virtual ApplianceRPM安装Docker 我已经有了一台Oracle Linux 8的虚机&#x…

python:做柱状图

import matplotlib.pyplot as plt # 数据 categories [A, B, C, D] values [23, 45, 56, 78] # 创建柱状图 plt.bar(categories, values) # 添加标题和标签 plt.title(柱状图示例) plt.xlabel(类别) plt.ylabel(数值) # 显示图形 plt.show() D:\software\新建文件夹\python\L…

力扣每日一题- 给植物浇水 II -2024.5.9

力扣题目:给植物浇水 II 题目链接: 2105.给植物浇水 II 题目描述 代码思路 根据题目内容,使用双指针从左右两边同时向中间移动,模拟浇水过程即可。 代码纯享版 class Solution {public int minimumRefill(int[] plants, int capacityA, …

java 文件表创建及前后端使用

表结构task_file 前端具体到业务表单 <el-form-item label"任务附件" prop"taskAttachment"><el-upload ref"upload" accept".jpg, .png, .txt, .xlsx, .doc, .docx, .xls, .pdf, .zip, .rar":action"upload.url" …

Go-Zero自定义goctl实战:定制化模板,加速你的微服务开发效率(四)

前言 上一篇文章带你实现了Go-Zero和goctl&#xff1a;解锁微服务开发的神器&#xff0c;快速上手指南&#xff0c;本文将继续深入探讨Go-Zero的强大之处&#xff0c;并介绍如何使用goctl工具实现模板定制化&#xff0c;并根据实际项目业务需求进行模板定制化实现。 通过本文…

videosapi开发微信管理系统

获取登录二维码&#xff1a; export interface Request {/*** 设备ID&#xff0c;首次登录传空&#xff0c;之后传接口返回的appId*/appId?: string;/*** 代理IP 格式&#xff1a;socks5://username:password123.2.2.2*/proxyIp?: string;/*** 地区*/regionId: string;[prop…

宋仕强论道之新质生产力

宋仕强论道之新质生产力&#xff0c;宋仕强说当前5G通信、人工智能、万物互联、工业互联网、数字经济、新能源技术和产业等领域正蓬勃发展&#xff0c;成为未来经济增长的重要推动力&#xff0c;也是目前提倡的新质生产力的重要组成部分。而这些领域的发展都离不开数据的采集、…

React使用Outlet实现路由跳转时局部刷新页面

Outlet是react-router-dom插件的一个组件&#xff0c;首先需要安装react-router-dom插件&#xff1a; cnpm i react-router-dom --save 官方文档 应该在父路由元素中用来渲染其子路由元素。这允许在渲染子路由时显示嵌套的 UI。如果父路由完全匹配&#xff0c;则将渲染子索引…

按键精灵、autojs、冰狐智能辅助到底该如何选择?

我们在做自动化脚本的过程中会遇到很多平台&#xff0c;典型的有按键精灵、autojs、冰狐智能辅助这三个是典型代表。按键精灵代表了比较早期的使用root解决方案的自动化脚本平台&#xff0c;autojs代表了使用js和无障碍功能实现的自动化脚本平台&#xff0c;冰狐智能辅助代表了…

Flutter 引入webview_windows插件,在已经使用$PATH 中的 nuget.exe情况下,windows端构建失败

报错 PS F:\xx\xxxx> flutter run -d windows Flutter assets will be downloaded from https://storage.flutter-io.cn. Make sure you trust this source! Launching lib\main.dart on Windows in debug mode... E:\Some software\Visual Studio\VS 2022\MSBuild\M…

基于R语言绘图 | 转录代谢趋势图绘制教程

原文链接&#xff1a;基于R语言绘图 | 转录代谢趋势图绘制教程 本期教程 小杜的生信笔记&#xff0c;自2021年11月开始做的知识分享&#xff0c;主要内容是R语言绘图教程、转录组上游分析、转录组下游分析等内容。凡事在社群同学&#xff0c;可免费获得自2021年11月份至今全部…

【深度学习】【Lora训练0】StabelDiffusion,Lora训练,kohya_ss训练

文章目录 环境数据自动标注kohya_ss BLIP2kohya_ss WD14 后续 资源&#xff1a; &#xff08;1&#xff09;训练ui kohya_ss&#xff1a; https://github.com/bmaltais/kohya_ss &#xff08;2&#xff09;kohya_ss 的docker 其他docker https://github.com/ashleykleynhans…

npm -v : 无法加载文件 C:\Users\hp\AppData\Roaming\npm\cnpm.ps1,因为在此系统上禁止运行脚本

解决方式&#xff1a; 1、在系统中搜索框 输入 Windos PowerShell 2、右键菜单&#xff0c;点击“以管理员身份运行” 3、输入“ set-ExecutionPolicy RemoteSigned”回车 4、根据提示&#xff0c;输入A&#xff0c;回车 5、再npm -v执行成功。