摘要:
class Feature: def __init__(self, name): self.name = name def move(self): pass class Duck(Feature): def move(self): print(f'{self.name} is walking') c 阅读全文
摘要:
appium连接手机做自动化,本来做的好好的。突然某一次开始一直报错这个socket hang up 我看网上有说uiautomator2的,又说uiautomator耗电严重,被手机自动杀的。都没解决我的问题 最后搞懂了我的起因: 上一次的调试链接没有主动断开,也即没有driver.quit() 阅读全文