暂时未有相关云产品技术能力~
暂无个人介绍
AttributeError: 'NoneType' object has no attribute 'to_capabilities'
设置pycharm使用pytest执行测试用例时,输出print语句至控制台
pytest添加自定义参数
一键启动Appium自动化环境
设置Linux服务器时间为北京时间
Linux虚拟机不显示IP地址的解决办法
pytest 运行测试函数报错的解决办法 TypeError: calling <function xxx> returned None, not a test
Python封装ADB获取Android设备wifi地址的方法
appium 安装 uiautomator2-server-debug-androidTest.apk 、appium-uiautomator2-server-v5.12.16.apk 失败的解决办法
selenium.common.exceptions.InvalidElementStateException Message Unable to perform W3C actions
Appium启动微信失败的解决办法
Error obtaining Ul hierarchy Reason: Error while obtaining Ul hierarchy XML file
@functools.wraps的作用
Appium Server 启动失败常见原因及解决办法
Appium微信小程序自动化环境准备
Could not proxy command to the remote server. Original error: timeout of 240000ms exceeded 的解决办法
Appium设置会话时长,解决调试代码时session失效的问题
python ini文件包含中文时报错UnicodeDecodeError: ‘gbk‘ codec can‘t decode byte 0x8c 的解决办法
App自动化查看webview的元素定位信息
Appium自动化测试swipe滑动封装
pytest命令行传递参数excelpath实现数据驱动
Appium日志分析总结Appium工作原理
Python+Appium2.0的APP自动化环境搭建
selenium.common.exceptions.InvalidElementStateException: Message: Unable to perform W3C actions.
将Linux虚拟机导出为OVF文件
Appium微信小程序自动化之开启webview调试功能方法封装
Appium 并行测试多个设备
python 使用 AppiumService 类启动appium server
pycharm使用pytest运行测试用例,无法在控制台输出print语句、log语句的解决办法
selenium 解决 id定位、class定位中,属性值带空格的解决办法
AttributeError ‘NoneType‘ object has no attribute ‘to_capabilities‘
Linux虚拟机设置固定IP
python 函数参数验证器 pyparamvalidate
python正确使用logging日志的方式
No Chromedriver found that can automate Chrome ‘x.x.xxxx‘的解决办法
- 元类是类的类,用于控制类实例的创建过程和初始化过程。 - `__new__` 用于创建类实例,`__init__` 用于初始化实例。 - 元类的主要作用是允许在类被创建之前修改它,如添加属性、修改行为。 - 元类适用于对类创建过程进行深度干预的特殊需求,对于大多数情况,普通类定义和继承已经足够,元类提供额外的灵活性。