自动化测试
文章平均质量分 92
孩儿她们爹
10年软件测试工作经验,6年团队管理经验,做过性能测试,擅长自动化测试,有持续集成经验。精通测试基础知识;精通测试用例设计;精通selenium、appium、uiautomator,cypress等自动化测试工具;精通自动化、接口测试框架开发,熟练使用LR、jmeter进行性能测试并定位性能问题;掌握Java、python语言;熟悉HTML,JS。
展开
-
前端自动化测试框架Cypress(十五)--- 上传文件cypress-file-upload
安装插件cypress-file-uploadcmd进入项目根目录npm install --save-dev cypress-file-upload导入插件在cypress/support/commands.js导入插件cypress-file-uploadimport 'cypress-file-upload';实例/* Plain HTML input */const yourFixturePath = 'data.json';cy.get('[data-cy="file-in原创 2020-06-12 17:34:39 · 4030 阅读 · 5 评论 -
Chrome Headless(无头模式)下Element is not clickable 的解决方法
Chrome Headless(无头模式)下Element is not clickable 的解决方法Python环境中chromedriver添加以下参数from selenium.webdriver.chrome.options import Optionsdef get_options(): chrome_options = Options() chrome_opti...原创 2020-04-23 15:44:20 · 5274 阅读 · 5 评论 -
python+uiautomator2二次封装
python+uiautomator2二次封装#!python3.7# -*- coding: utf-8 -*-__author__ = 'haiertamendie'__data__ = "2019-11-15 19-56"import base64"""界面元素基础操作"""import uiautomator2 as u2from Config.Config im...原创 2020-04-23 15:23:18 · 3088 阅读 · 3 评论 -
java+UIAutomatorAPI详解
UIAutomatorAPI详解UiObject手势操作dragTo():拖拽dragTo(int destX, int destY, int steps)–拖拽对象到屏幕(destX,destY)位置上dragTo(UiObject destObj, int steps)–拖拽对象到屏幕另一个对象(destObj)位置上swipe():滑动swipe(int startX, int...原创 2020-04-23 15:15:07 · 1192 阅读 · 0 评论 -
python+uiautomator环境搭建及启动实例
python+uiautomator环境搭建及启动实例一、python安装在python的官网下载python对应版本:https://www.python.org/downloads/windows/64位下载Windows x86-64 executable installer 版本32位下载Windows x86 executable installer 版本打开链接如下图,版...原创 2020-04-23 15:12:29 · 1330 阅读 · 0 评论 -
python3 Robot Framework-失败用例自动重跑
python3 Robot Framework-失败用例自动重跑使用自动化脚本进行测试,经常受环境影响等各方面导致本能成功的脚本失败,下面介绍了RFS框架下,失败重跑的方法:通过改写RobotFramework源代码增加–retry选项,实现test级别的失败用例自动再执行:失败用例会重跑N次,直至成功or 耗尽重试次数,生成的日志和报告文件中只会体现最后一次执行的结果。修改代码如下:一、...原创 2020-03-23 11:28:06 · 1170 阅读 · 2 评论 -
HTMLTestRunner.py二次开发加入skiped用例统计、失败自动截图并整合到报告中
标题HTMLTestRunner.py二次开发加入skiped用例统计、失败自动截图并整合到报告中修改前效果:修改前代码:#-*- coding: utf-8 -*-"""A TestRunner for use with the Python unit testing framework. Itgenerates a HTML report to show the result a...原创 2019-12-11 11:06:53 · 619 阅读 · 0 评论