上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 87 下一页

2022年8月8日

摘要: SoloPi支付宝在移动端上一个无线化、非侵入式、免Root的Android自动化专项测试工具,目前开放的有录制回放、性能测试、一机多控三项主要功能,能为测试开发人员节省宝贵时间。 环境准备 PC端环境准备,以我的电脑Windows系统为例: 1. SoloPi是基于java开发的一款测试工具,因此 阅读全文
posted @ 2022-08-08 10:13 帅胡 阅读(1329) 评论(0) 推荐(0) 编辑

2022年8月4日

摘要: a) 通用选项 -L license -h 帮助 -fromats 显示可用的格式,编解码的,协议的... -f fmt 强迫采用格式fmt -I filename 输入文件 -y 覆盖输出文件 -t duration 设置纪录时间 hh:mm:ss[.xxx]格式的记录时间也支持 -ss posi 阅读全文
posted @ 2022-08-04 15:06 帅胡 阅读(696) 评论(0) 推荐(0) 编辑
摘要: 将以下操作保存为bat文件(新建txt,然后将后缀改为bat),然后双击运行即可。 reg delete "HKEY_CURRENT_USER\Software\Scooter Software\Beyond Compare 4" /v CacheID /f这个操作是删除BeyondCompare4 阅读全文
posted @ 2022-08-04 14:57 帅胡 阅读(299) 评论(0) 推荐(0) 编辑
摘要: import trio # async library that selenium uses from selenium import webdriver async def start_listening(listener): async for event in listener: print( 阅读全文
posted @ 2022-08-04 14:41 帅胡 阅读(324) 评论(0) 推荐(0) 编辑

2022年8月3日

摘要: #ifdef LRDLLTEST_EXPORTS #define LRDLLTEST_API __declspec(dllexport) #else #define LRDLLTEST_API __declspec(dllimport) #endif extern "C" LRDLLTEST_API 阅读全文
posted @ 2022-08-03 15:31 帅胡 阅读(62) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*- import pythoncom import pyHook import time import win32api import win32con def onMouseWheel(event): if event.Wheel == -1: win3 阅读全文
posted @ 2022-08-03 14:39 帅胡 阅读(41) 评论(0) 推荐(0) 编辑
摘要: from ctypes import *import PyHook3 as pyHookimport pythoncom def onKeyboardEvent1(event): print("onKeyboardEvent") pid = c_ulong(0) windowTitle = crea 阅读全文
posted @ 2022-08-03 14:32 帅胡 阅读(78) 评论(0) 推荐(0) 编辑
摘要: '''HookEvent Instance Methods string GetMessageName(self) Returns: Name of the event Class Variables MessageName Instance Variables integer Message Ke 阅读全文
posted @ 2022-08-03 14:19 帅胡 阅读(197) 评论(0) 推荐(0) 编辑

2022年8月2日

摘要: from selenium import webdriver import logging logging.basicConfig(level=logging.DEBUG) # 打印源码中的日志 dr = webdriver.Chrome() # 打开浏览器driver.get("https://w 阅读全文
posted @ 2022-08-02 18:41 帅胡 阅读(110) 评论(0) 推荐(0) 编辑
摘要: import subprocess import time proc = subprocess.Popen(['ffmpeg', '-f', 'gdigrab', '-framerate', '15', '-offset_x', '0', '-offset_y', '0', '-video_size 阅读全文
posted @ 2022-08-02 18:11 帅胡 阅读(374) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 87 下一页

导航