import time, threading, copy import win32api, win32con import win32gui import win32gui def zhaojb(aa): mu=0 jh=[] hwnd_title = dict() def get_all_hwnd(hwnd,mouse): if win32gui.IsWindow(hwnd) and win32gui.IsWindowEnabled(hwnd) and win32gui.IsWindowVis…
function FindWindowThroughWindowText(WindowText: string): THandle;var  hCurrentWindow: THandle;  cnt: Integer;  WindowTitle: array [0 .. 254] of Char;begin  Result := INVALID_HANDLE_VALUE; // 返回值预设为无效的句柄  hCurrentWindow := GetForegroundWindow; // 找出当…
前段时间用Python实现了一个网络爬虫(让大蛇(Python)帮你找工作),效率总体还可以,但是缺点就是每次都需要手动的去触发,于是打算对该爬虫加上Timer,经过网上一番搜索以及API的查询,发现Python自身的API在这方面没有很好支持. 在这种情况下要使用Timer功能,除了第三方的模块外,可以通过使用标准库为我们提供的sched模块和Timer类.这两个类也只能算是用来现实Timer的工具类,而不能算是真正的Timer.下面对这两种类如何实现Timer做个简单的演示 (1)sched…
linux环境下 python环境import找不到自定义的模块 问题现象: Linux环境中自定义的模块swport,import swport 出错.swport模块在/root/sw/目录下. 解决方法1:此种办法当时生效,但是需要写入每一个文件中,才能import不出错. import sys sys.path.append('/root/sw') import swport #成功 解决方法2:修改环境变量/etc/profile vi /etc/profile  在最后一行添加 ex…
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>监控窗口是否活动</title> </head> <body> <script> window.addEventListener('blur', ()=>{ document.title = '放入后台'; }, t…
1.参考 利用 Python + Selenium 自动化快速截图 利用 Python + Selenium 实现对页面的指定元素截图(可截长图元素) 使用python获取系统所有进程PID以及进程名称 python锁定焦点到指定进程窗口的参考方法 2.改进js代码,下拉和上拉,精确判断加载是否结束 #!/usr/bin/env python# -*- coding: UTF-8 -*import time from selenium import webdriverfrom selenium.…
问题:在pycharm直接运行test_suit.py正常,通过dos窗口运行则提示找不到模块. 原因: https://blog.csdn.net/crylearner/article/details/25430621 https://bbs.csdn.net/topics/392366387 解决: 方法1:在顶层工程目录下见建一个main.py,在main.py中导入test_suit模块,在dos命令窗口进入main.py所在的目录,运行main.py即可 方法2:在py文件中导入sys…
-- enoding:utf-8 -- 生成 buffer 对象 import win32con from win32gui import PyMakeBuffer, SendMessage, PyGetBufferAddressAndLen, PyGetString length = 10000 hWnd=68214 hWnd=68302 buf = PyMakeBuffer(length) length2 = SendMessage(hWnd, win32con.WM_GETTEXT, le…
怎样利用注册好的大漠对象来绑定窗口? 直接上代码,根据代码分析 from win32com.client import Dispatch import os from win32gui import FindWindow class Operation: def __init__(self, dm, hwnd): self.dm = dm self.hwnd = hwnd self.dm.Reg('注册码', '') print(self.dm.Ver()) self.bind() def bi…
#!/usr/bin/python# -*- coding: utf-8 -*-__author__ = 'zuoanvip'#在测试过程中有时候会遇到出现多个浏览器窗口的情况,这时候我们可以通过窗口的句柄来操作不同窗口的元素from selenium import  webdriverimport  osimport  time driver =webdriver.Firefox()driver.get('http://www.baidu.com') #获得当前窗口的句柄nowwhandle…