摘要:
pywinauto pywinauto是一组用于自动化Microsoft Windows GUI的python模块。 最简单的是,它允许您将鼠标和键盘操作发送到窗口对话框和控件,来完成我们自动化操作。 官方文档:http://pywinauto.github.io/ 安装: 方法一: 通过pip进行 阅读全文
摘要:
from selenium.webdriver.common.action_chains import ActionChains zuke=driver.find_element_by_xpath('div[@class="cell"]/div/div/span')time.sleep(1)Acti 阅读全文
摘要:
1.需要滚动divjs = "document.getElementsByClassName('el-table__body-wrapper')[0].scrollLeft=1000;"driver.execute_script(js)2.滑动至目标元素可见 mm= driver.find_elem 阅读全文
摘要:
mobileEmulation = {'deviceName': 'iPhone 6'}options = webdriver.ChromeOptions()options.add_experimental_option('mobileEmulation', mobileEmulation)driv 阅读全文
摘要:
解决adb shell input text 中文输入方法 2019.04.13 11:53:37字数 114阅读 2,280 背景:使用uiautomator2做自动化测试,需要在文本框输入数字或者中文,默认使用的搜狗输入法无法使用adb shell input text "XXX"实现。 解决方 阅读全文
摘要:
C:\Users\用户名\AppData\Local\Google\Update 把这个目录下\GoogleUpdate.exe更新程序改名就可以了,最好先备份一下,说不定以后你还想升级。 修改了之后,隔了几点又自动更新了,也是醉了,发现GoogleUpdate.exe这个被自动添加上了 修改计算机 阅读全文
摘要:
按照如图配置点击start_session就能开启了 { "platformName": "Android", "deviceName": "06599afc7d24", "platformVersion": "9", "appPackage": "com.taobao.idlefish", "ap 阅读全文
摘要:
root账号登录: grant select on 库名.xxx to 账号名@'%';flush privileges; 阅读全文
摘要:
https://blog.csdn.net/niedongri/article/details/79448179 https://www.cnblogs.com/cnkemi/p/9185253.html 阅读全文
摘要:
os.popen('adb shell dumpsys activity activities ').read()os.popen('adb shell dumpsys window windows | findstr mFocusedApp').read() 阅读全文