摘要: 1.导出当前电脑python三方包列表及版本 pip freeze > requirements.txt 将三方包列表及版本导入requirements.txt文件 2.另一台电脑按文件中的版本批量安装三方包 pip install -r requirements.txt 阅读全文
posted @ 2025-08-05 16:16 金一九 阅读(17) 评论(0) 推荐(0)
摘要: 元素的UIAUTOMATOR如下 new UiSelector().description("个人信息") 写在程序里要用以下方式,不可以将双引号换成单引号 el1 = driver.find_element(by=AppiumBy.ANDROID_UIAUTOMATOR,value="new Ui 阅读全文
posted @ 2025-08-05 15:07 金一九 阅读(11) 评论(0) 推荐(0)