appium输入过慢,采用adb方式
def fast_input(str,element): '快速输入' x = subprocess.check_output('adb devices', shell=True).split('\n')[1][:-7] element.click() time.sleep(0.3) subprocess.Popen('adb -s %s shell input text %s'%(x,str), shell=True) time.sleep(0.5)
2023-12-30 13:30:46
appium输入过慢,采用adb方式
def fast_input(str,element): '快速输入' x = subprocess.check_output('adb devices', shell=True).split('\n')[1][:-7] element.click() time.sleep(0.3) subprocess.Popen('adb -s %s shell input text %s'%(x,str), shell=True) time.sleep(0.5)
下一篇:Markdown基本语法