摘要:
SoloPi支付宝在移动端上一个无线化、非侵入式、免Root的Android自动化专项测试工具,目前开放的有录制回放、性能测试、一机多控三项主要功能,能为测试开发人员节省宝贵时间。 环境准备 PC端环境准备,以我的电脑Windows系统为例: 1. SoloPi是基于java开发的一款测试工具,因此 阅读全文
摘要:
a) 通用选项 -L license -h 帮助 -fromats 显示可用的格式,编解码的,协议的... -f fmt 强迫采用格式fmt -I filename 输入文件 -y 覆盖输出文件 -t duration 设置纪录时间 hh:mm:ss[.xxx]格式的记录时间也支持 -ss posi 阅读全文
摘要:
将以下操作保存为bat文件(新建txt,然后将后缀改为bat),然后双击运行即可。 reg delete "HKEY_CURRENT_USER\Software\Scooter Software\Beyond Compare 4" /v CacheID /f这个操作是删除BeyondCompare4 阅读全文
摘要:
import trio # async library that selenium uses from selenium import webdriver async def start_listening(listener): async for event in listener: print( 阅读全文
摘要:
#ifdef LRDLLTEST_EXPORTS #define LRDLLTEST_API __declspec(dllexport) #else #define LRDLLTEST_API __declspec(dllimport) #endif extern "C" LRDLLTEST_API 阅读全文
摘要:
# -*- coding: utf-8 -*- import pythoncom import pyHook import time import win32api import win32con def onMouseWheel(event): if event.Wheel == -1: win3 阅读全文
摘要:
from ctypes import *import PyHook3 as pyHookimport pythoncom def onKeyboardEvent1(event): print("onKeyboardEvent") pid = c_ulong(0) windowTitle = crea 阅读全文
摘要:
'''HookEvent Instance Methods string GetMessageName(self) Returns: Name of the event Class Variables MessageName Instance Variables integer Message Ke 阅读全文
摘要:
from selenium import webdriver import logging logging.basicConfig(level=logging.DEBUG) # 打印源码中的日志 dr = webdriver.Chrome() # 打开浏览器driver.get("https://w 阅读全文
摘要:
import subprocess import time proc = subprocess.Popen(['ffmpeg', '-f', 'gdigrab', '-framerate', '15', '-offset_x', '0', '-offset_y', '0', '-video_size 阅读全文