导航

2020年8月23日

摘要: 前言 press方法是用来模拟键盘按键输入,可以组合使用,来模拟键盘输入,解决一些难定位的元素 入参介绍 以下是press源码中的函数介绍 def press(key): :入参 :param key: Key or combination of keys to be pressed. Presse 阅读全文

posted @ 2020-08-23 19:32 weitungblog 阅读(793) 评论(0) 推荐(0) 编辑

2020年8月22日

摘要: 前言 write方法是模拟在输入框中写入数据 write入参说明 def write(text, into=None): """ :param text: The text to be written. :type text: one of str, unicode :param into: The 阅读全文

posted @ 2020-08-22 21:33 weitungblog 阅读(938) 评论(0) 推荐(0) 编辑

2020年8月21日

摘要: 前言 click点击方法在web UI自动化中使用频率非常高,此方法就是模拟鼠标左键单击动作 click入参说明 1.首先我们来分析一下click方法的代码 click(element): """ :参数 元素:元素或坐标 :param element: The element or point t 阅读全文

posted @ 2020-08-21 21:45 weitungblog 阅读(1383) 评论(0) 推荐(0) 编辑

2020年8月20日

摘要: 学习思路: 查看github项目的源码,每个方法都有介绍及使用说明 https://github.com/mherrmann/selenium-python-helium/blob/master/helium/__init__.py __all__ = [ # Actions: 方法 'attach 阅读全文

posted @ 2020-08-20 21:47 weitungblog 阅读(1640) 评论(0) 推荐(0) 编辑

2020年8月19日

摘要: 前言 Helium 是一款 Web 端自动化开源框架,全称是:Selenium-Python-Helium,从名字上就可以看出,Helium 似乎和 Selenium 息息相关,基于Selenium的更轻量级的浏览器自动化。 确实,Helium 针对 Selenium 进行了封装,它屏蔽了 Sele 阅读全文

posted @ 2020-08-19 21:50 weitungblog 阅读(1041) 评论(0) 推荐(0) 编辑

2018年9月12日

摘要: 作为个人记录持续更新 查看被占用端口 netstat -ano|findstr "8081" 检查80端口是否被占用的命令是 netstat -ano | findstr 0.0.0.0:80 或 netstat -ano | findstr "80" 查找nginx服务是否运行 tasklist 阅读全文

posted @ 2018-09-12 22:11 weitungblog 阅读(124) 评论(0) 推荐(0) 编辑

摘要: 学习nginx代理服务器做负载均衡的使用 在本地安装Nginx 1.下载nginx http://nginx.org/en/download.html 下载稳定版本,以nginx/Windows-1.12.2为例,直接下载 nginx-1.12.2.zip 下载后解压,解压后如下 2.启动nginx 阅读全文

posted @ 2018-09-12 22:09 weitungblog 阅读(1528) 评论(0) 推荐(0) 编辑

2018年8月12日

摘要: 介绍Jmeter的发送邮件功能,使用的Sampler是SMTP Sampler,详细说明每个配置项的功能 从上往下介绍需要用到的配置项: Server settings Server: 服务器地址 Port: 服务器端口 Mail settings Address From: 发送地址 Addres 阅读全文

posted @ 2018-08-12 10:06 weitungblog 阅读(1589) 评论(0) 推荐(0) 编辑

2018年8月1日

摘要: 问题描述:测试中需要模拟大量设备的消息上报到平台,但是实际测试中没有那么多设备,所以采取用jmeter直接往ActiveMQ模拟发送设备消息 解决思路:获取平台采取的是Queues还是Topics ;并且获取队列名,需要发送的数据,然后在jmeter中模拟发送 jmeter配置参考博客:https: 阅读全文

posted @ 2018-08-01 22:02 weitungblog 阅读(1567) 评论(0) 推荐(0) 编辑

摘要: 参考: https://blog.csdn.net/yue530tomtom/article/details/77870233?locationNum=10&fps=1 1、准备jdk环境 下载安装jdk_8u66 链接:https://pan.baidu.com/s/1KWzjDkT7d4ZI0z 阅读全文

posted @ 2018-08-01 21:32 weitungblog 阅读(659) 评论(0) 推荐(0) 编辑