会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
ninarMing
博客园
首页
新随笔
联系
管理
订阅
1
2
3
下一页
2024年9月10日
【Python】smtplib.SMTP自动从126邮箱发送邮件失败:smtplib.SMTPAuthenticationError: (535, b'Error: authentication failed')
摘要: raise SMTPAuthenticationError(code, resp)smtplib.SMTPAuthenticationError: (535, b'Error: authentication failed') 解决方案: 登录密码用126邮箱的授权密码: 1、登录126邮箱; 2、设
阅读全文
posted @ 2024-09-10 14:57 ninarMing
阅读(61)
评论(0)
推荐(0)
编辑
2024年8月21日
【Selenium4_python】无需加载浏览器驱动,但是首次加载过慢(自动下载浏览器驱动)
摘要: 默认自动加载驱动到:C:\Users\用户名\.cache\selenium下,可以将文件夹下的驱动放到本地一个固定位置,或者当前项目文件夹下: 用Service对象加载本地驱动: options = webdriver.ChromeOptions() options.pageLoadSreateg
阅读全文
posted @ 2024-08-21 11:43 ninarMing
阅读(60)
评论(0)
推荐(0)
编辑
2024年8月20日
【pipenv】failed to create virtual enviroment: TypeError: canonicalize_version() got an unexpected keyword argument 'strip_trailing_zero'
摘要: pipenv创建虚拟环境失败:TypeError: canonicalize_version() got an unexpected keyword argument 'strip_trailing_zero'
阅读全文
posted @ 2024-08-20 11:03 ninarMing
阅读(866)
评论(0)
推荐(0)
编辑
2023年8月2日
【Jmeter】跨线程获取cookie值
摘要: 1、设置配置文件:apache-jmeter-5.5\bin\jmeter.properties # CookieManager behaviour - should Cookies be stored as variables?# Default is falseCookieManager.sav
阅读全文
posted @ 2023-08-02 19:09 ninarMing
阅读(319)
评论(0)
推荐(0)
编辑
2023年2月7日
【Appium_python】多进程启动时,没有设置间隔导致连接关闭,以及等待时间,导致用例未执行完成,服务提早关闭。
摘要: 多进程启动多设备时,没有设置间隔时间,appium服务器以为受到远程攻击,就自动关闭连接,导致服务启动失败, 解决方法:用time.sleep设置时间间隔 也需要增加等待时间,等待其他设备用例都执行完毕,再关闭服务。 device = Server() device.main() num_devic
阅读全文
posted @ 2023-02-07 11:22 ninarMing
阅读(63)
评论(0)
推荐(0)
编辑
【Appium_python】启动app,出现多次打开关闭导致失败问题,driver用单例模式(_new_)进行解决。
摘要: 使用单例模式解决driver被多次实例化问题。
阅读全文
posted @ 2023-02-07 11:07 ninarMing
阅读(190)
评论(0)
推荐(0)
编辑
2023年2月6日
【Appium_python】利用Template生成对象模板_appium_元素定位/操作
摘要: 基本重复代码,就自动生成,节省时间,专注于业务逻辑。
阅读全文
posted @ 2023-02-06 18:33 ninarMing
阅读(35)
评论(0)
推荐(0)
编辑
2020年6月15日
【python_PAT_乙类】1013_数素数 ,Python运行超时解决方案
摘要: 1013_数素数 ,Python运行超时解决方案
阅读全文
posted @ 2020-06-15 15:12 ninarMing
阅读(464)
评论(0)
推荐(0)
编辑
2020年6月11日
【python_PAT_乙类】1007_素数对猜想 ,Python运行超时解决方案
摘要: 素数对猜想,python运行超时解决方案
阅读全文
posted @ 2020-06-11 10:18 ninarMing
阅读(459)
评论(0)
推荐(0)
编辑
2018年8月1日
【jenkins】jenkins 持续集成本地项目(win)
摘要: 【项目】 >【配置】: 【源码管理】= 无 【Pre Steps】:(因为是windows下,本地装有maven,直接用maven构建,又是个测试用例,就直接用mvn test) 选择windows批处理命令 然后邮件通知,保存后即可。
阅读全文
posted @ 2018-08-01 17:26 ninarMing
阅读(533)
评论(0)
推荐(0)
编辑
1
2
3
下一页