摘要: 摘自:https://blog.csdn.net/asd2479745295/article/details/83006379 linux下ssh连接缓慢详解原创皮的开心 最后发布于2018-10-11 09:13:37 阅读数 1824 收藏展开 最近发现公司新linux控制器使用ssh连接特别慢 阅读全文
posted @ 2020-02-22 11:02 cloudolt 阅读(399) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/huizaia/p/10331469.html 简介: fixture区别于unnitest的传统单元测试(setup/teardown)有显著改进: 1.有独立的命名,并通过声明它们从测试函数、模块、类或整个项目中的使用来激活。 2.按模块化的 阅读全文
posted @ 2020-02-16 16:35 cloudolt 阅读(574) 评论(0) 推荐(1) 编辑
摘要: 摘自:https://www.cnblogs.com/qingyuu/p/11209160.html 背景: python3+appium+pytest+allure写了安卓的自动化脚本,在windows本机pycharm上跑通过后生成了allure报告。 公司jenkins搭建在linux服务器上 阅读全文
posted @ 2020-01-22 14:48 cloudolt 阅读(1359) 评论(0) 推荐(0) 编辑
摘要: CentOS上安装配置Python3.7https://blog.csdn.net/qq_36288025/article/details/82534508 参考:https://blog.csdn.net/u013214212/article/details/81540840 完全照着这个里面的步 阅读全文
posted @ 2020-01-03 11:56 cloudolt 阅读(330) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.jianshu.com/p/c8f896d668d6 在python中,requests使用代理要比urllib好用太多,urllib还是有些交互性差。 代理 如果需要使用代理,你可以通过为任意请求方法提供 proxies 参数来配置单个请求: import reque 阅读全文
posted @ 2019-11-22 08:48 cloudolt 阅读(530) 评论(0) 推荐(0) 编辑
摘要: Selenium - Web自动化测试的基本操作实现 摘自https://www.jianshu.com/p/0d5cc5503f91 摘要: 之前用Selenium做UI自动化测试从初学到熟练碰到过很多问题,这里就不一一细说了,所以把最基本的操作都写在了一起,包括:控制浏览器,操作元素,鼠标事件, 阅读全文
posted @ 2019-11-03 22:49 cloudolt 阅读(652) 评论(0) 推荐(0) 编辑
摘要: cProfile——Python性能分析工具 摘录:https://www.cnblogs.com/kaituorensheng/p/4453953.html Python自带了几个性能分析的模块:profile、cProfile和hotshot,使用方法基本都差不多,无非模块是纯Python还是用 阅读全文
posted @ 2019-09-11 10:07 cloudolt 阅读(499) 评论(0) 推荐(0) 编辑
摘要: windows 10 python subprocess.Popen cmd 命令 转载: https://blog.csdn.net/u010953692/article/details/83831192 阅读全文
posted @ 2019-08-29 11:06 cloudolt 阅读(424) 评论(0) 推荐(0) 编辑
摘要: 摘自:https://blog.csdn.net/zjuxsl/article/details/79437563 一个语法在Python中,lambda的语法是唯一的。其形式如下: lambda argument_list: expression 其中,lambda是Python预留的关键字,arg 阅读全文
posted @ 2019-08-17 22:54 cloudolt 阅读(590) 评论(0) 推荐(0) 编辑
摘要: python的日志logging模块使用总结 摘自:http://outofmemory.cn/code-snippet/450/python-rizhi-logging-module-usage-summary 更多2 python 日志 1.简单的将日志打印到屏幕 import logging 阅读全文
posted @ 2019-08-02 10:44 cloudolt 阅读(276) 评论(0) 推荐(0) 编辑