摘要: http 三次握手 四次挥手 阅读全文
posted @ 2021-11-22 21:25 测试艺术家 阅读(77) 评论(0) 推荐(0) 编辑
摘要: unittest 初始化方法 每个方法执行一次 setUp(self) tearDown(self)每个类执行一次的方法 要加装修器 @classmethod def setUpClass(cls) @classmethod def tearDownClass(cls) -> None: # !/u 阅读全文
posted @ 2021-11-20 11:17 测试艺术家 阅读(238) 评论(0) 推荐(0) 编辑
摘要: list 列表操作 stus_names = ['张三','李四','王五','张三三'] count = 0 for name in stus_names: #查找到“李”姓 在list 中存在几次。 if name.find("李") == 0:表示 索引为第一个字 if name.find(" 阅读全文
posted @ 2021-11-06 09:25 测试艺术家 阅读(132) 评论(0) 推荐(0) 编辑
摘要: bat 通过命令以管理员方式运行程序 @echo off mode con lines=30 cols=60 %1 mshta vbscript:CreateObject("Shell.Application").ShellExecute("cmd.exe","/c %~s0 ::","","run 阅读全文
posted @ 2021-08-13 22:52 测试艺术家 阅读(861) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-08-01 18:30 测试艺术家 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-08-01 17:42 测试艺术家 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 1.查看主机名字 2.配置 本机 ip 加 名字 3.修改 jmeter配置 4.使用命令压测 [root@loc_centos test]# jmeter -n -t p2g.jmx -l p2g.jtl -r 注意:分布式 压测 要加 -r 否则是单机压测 用这个命令 启动server服务:ho 阅读全文
posted @ 2021-08-01 17:36 测试艺术家 阅读(74) 评论(0) 推荐(0) 编辑
摘要: socket接口=tcp接口、udp接口 (具体看公司业务而定) websocket != socket 4 接收消息 read sampler 阅读全文
posted @ 2021-07-25 18:06 测试艺术家 阅读(131) 评论(0) 推荐(0) 编辑
摘要: // 把token存储到全局属性中props.setProperty("gToken", vars.get("token")); //打印jmeter 日志log.info(" "+vars.get("token")) // 设置全局属性//props.setProperty(属性名, 属性值) / 阅读全文
posted @ 2021-07-25 17:50 测试艺术家 阅读(58) 评论(0) 推荐(0) 编辑
摘要: Basic Auth 阅读全文
posted @ 2021-05-09 15:12 测试艺术家 阅读(58) 评论(0) 推荐(0) 编辑
摘要: # -*- coding:utf-8 -*- from locust import HttpUser,TaskSet,task import random class UserBehavior(TaskSet): def on_start(self): #设置user和group的参数下表值 sel 阅读全文
posted @ 2021-05-05 17:07 测试艺术家 阅读(168) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/xiao987334176/p/13255273.html 阅读全文
posted @ 2021-04-28 23:03 测试艺术家 阅读(61) 评论(0) 推荐(0) 编辑
摘要: requests 测试demo http://httpbin.org/ 使用 pip 安装命令如下: pip install requests 安装检测 打开 cmd 窗口,输入 python 然后导入 requests 如果安装成功没有任何提示 import requests 发送不同类型 HTT 阅读全文
posted @ 2021-04-27 19:51 测试艺术家 阅读(95) 评论(0) 推荐(0) 编辑
摘要: a = 10 def test(): global a a = 5 print(a) test() print(a) 阅读全文
posted @ 2021-04-27 14:18 测试艺术家 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 日志的配法 https://www.jb51.net/article/42626.htm 遇到的第一个坑,折腾半天 https://www.cnblogs.com/aziji/p/9480314.html python实例化N次类,调用类函数log会输出N遍的bug 解决办法 1、每次创建不同nam 阅读全文
posted @ 2021-04-26 22:41 测试艺术家 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 滑动页面查找元素 每次加 300 进度条,总共2次机会 # -*- coding:utf-8 -*- from selenium import webdriver from time import sleep from selenium.common.exceptions import NoSuch 阅读全文
posted @ 2021-04-25 14:55 测试艺术家 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-04-25 12:30 测试艺术家 阅读(69) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/king2/p/13657805.html 阅读全文
posted @ 2021-04-25 11:35 测试艺术家 阅读(43) 评论(0) 推荐(0) 编辑
摘要: # -*- coding:utf-8 -*- from selenium import webdriver import time from selenium.webdriver.common.by import By driver = webdriver.Chrome(executable_pat 阅读全文
posted @ 2021-04-25 03:24 测试艺术家 阅读(1378) 评论(0) 推荐(0) 编辑
摘要: from selenium import webdriver from selenium.webdriver.common.action_chains import ActionChains from time import sleep driver=webdriver.Firefox() driv 阅读全文
posted @ 2021-04-24 23:58 测试艺术家 阅读(149) 评论(0) 推荐(0) 编辑
摘要: find_elements_by_tag_name("input")tag name 就是标签的意思浏览器调试可以用 document.getElementsByTagName("input") xpath 绝对路径定位 /html/body/div[1]/div[1]/div[5]/div/div 阅读全文
posted @ 2021-04-24 18:17 测试艺术家 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 一、三大浏览器的驱动地址: chrome驱动:http://chromedriver.storage.googleapis.com/index.html Firefox驱动:https://github.com/mozilla/geckodriver/releases/ edge驱动:https:/ 阅读全文
posted @ 2021-04-24 17:42 测试艺术家 阅读(411) 评论(0) 推荐(0) 编辑
摘要: python 多进程,多线程简单的 # -*- coding:utf-8 -*- from time import ctime,sleep import threading #线程 import multiprocessing #多进程 def talk(c,loop): for i in rang 阅读全文
posted @ 2021-04-24 14:59 测试艺术家 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 创建一个xml文件Class_info.xml 用来存储班级学生(姓名,年龄,城市),老师(姓名,年龄,城市)、教务账号(学生和老师的账号,密码)等信息。 <?xml version="1.0" encoding="UTF-8" ?> <Class> <student> <name >Jack</n 阅读全文
posted @ 2021-04-24 12:56 测试艺术家 阅读(1945) 评论(0) 推荐(0) 编辑
摘要: 转载 https://www.jianshu.com/p/f2c9dff344c6 pip install xlrd # -*- coding:utf-8 -*- import xlrd """ 打开excel表格""" workbook = xlrd.open_workbook("register 阅读全文
posted @ 2021-04-23 12:54 测试艺术家 阅读(2236) 评论(0) 推荐(0) 编辑
摘要: #! -*- coding:utf-8 -*- class Person(object): #构造函数 def __init__(self, name): self.name = name def sayHi(self): print("Hello, my name is", self.name) 阅读全文
posted @ 2021-04-22 22:26 测试艺术家 阅读(54) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/37974829 阅读全文
posted @ 2021-04-20 13:04 测试艺术家 阅读(597) 评论(0) 推荐(0) 编辑
摘要: 每条用例执行10次 https://blog.csdn.net/weixin_40656303/article/details/109893244 # -*- coding:utf-8 -*- import unittest class SetupEndDef(unittest.TestCase): 阅读全文
posted @ 2021-04-19 21:26 测试艺术家 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 转载: https://www.jb51.net/article/140151.htm import json name_emb = {'a': '1111', 'b': '2222', 'c': '3333', 'd': '4444'} #写的字典 jsDumps = json.dumps(nam 阅读全文
posted @ 2021-04-18 21:25 测试艺术家 阅读(223) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/superhin/p/10338930.html # -*- coding:utf-8 -*- import requests import json hosts = "http://127.0.0.1:8082" #普通的get请求 def requ 阅读全文
posted @ 2021-04-18 20:47 测试艺术家 阅读(172) 评论(0) 推荐(0) 编辑
摘要: http://blog.sina.com.cn/s/blog_688077cf01013qrk.html 三. 三种配置环境变量的方法1. 修改/etc/profile文件如果你的计算机仅仅作为开发使用时推荐使用这种方法,因为所有用户的shell都有权使用这些环境变量,可能会给系统带来安全性问题。· 阅读全文
posted @ 2021-04-17 20:51 测试艺术家 阅读(1330) 评论(0) 推荐(0) 编辑
摘要: 创建如下表: 学生student:sno:学号,sname:姓名,age:年龄 sex:性别 create database school; use school; 格式: create table if not exists 表名(列名 数据类型); create table if not exi 阅读全文
posted @ 2021-04-12 14:13 测试艺术家 阅读(147) 评论(0) 推荐(0) 编辑
摘要: HTTP脚本 400(Bad Request/错误请求) 检查脚本中的请求参数语法格式是否正确 401(Unauthorized/未授权) 检查脚本中的请求是否缺少必要的header信息 403(Forbidden/禁止) 检查脚本中的用户信息,是否拥有权限去操作业务 404(Not Found/未 阅读全文
posted @ 2021-04-11 12:44 测试艺术家 阅读(96) 评论(0) 推荐(0) 编辑
摘要: docker 命令 systemctl start docker 启动 systemctl restart docker 重启 systemctl stop docker 停止 harbor仓库,把harbor.yml文件中的https协议注释掉 /etc/docker dackerman.json 阅读全文
posted @ 2021-03-08 12:30 测试艺术家 阅读(58) 评论(0) 推荐(0) 编辑
摘要: anaconda 环境 https://www.cnblogs.com/devilmaycry812839668/p/10349780.html 进入环境:conda activate {环境名} 推出环境:conda deactivate 删除环境:conda remove -n {环境名} -- 阅读全文
posted @ 2021-01-25 08:39 测试艺术家 阅读(63) 评论(0) 推荐(0) 编辑
摘要: centos虚拟机磁盘扩容 https://jingyan.baidu.com/article/ca00d56cad34dda89febcf7b.html 阅读全文
posted @ 2021-01-25 08:38 测试艺术家 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 应用的发布商店的搭建 1. jenkins + intranet_app_manager 的应用商店 https://gitee.com/tangjiaqq/intranet_app_manager 2. 爱发布 应用商店 适用于持续集成平台 https://gitee.com/tangjiaqq/ 阅读全文
posted @ 2021-01-08 09:51 测试艺术家 阅读(1217) 评论(0) 推荐(0) 编辑
摘要: 转 https://www.cnblogs.com/brianzhu/p/10220556.html 阅读全文
posted @ 2020-12-29 14:54 测试艺术家 阅读(132) 评论(0) 推荐(0) 编辑
摘要: file_lists = os.listdir(dir) file_lists.sort(key=lambda fn: os.path.getmtime( dir + "\\" + fn) if not os.path.isdir(dir + "\\" + fn) else 0) log.info( 阅读全文
posted @ 2020-12-07 19:28 测试艺术家 阅读(294) 评论(0) 推荐(0) 编辑
摘要: python超时等待 https://www.jianshu.com/p/6211a6183dce?from=groupmessage 阅读全文
posted @ 2020-11-19 18:12 测试艺术家 阅读(290) 评论(0) 推荐(0) 编辑