摘要:
jmeter中变量的嵌套一般有两种方式 1,调用__V函数 { "phone": "${phone}", "xxId": "${__V(xxId_${counter})}" } 2,使用${__BeanShell(vars.get("xxId_${counter}")} { "phone":"${p 阅读全文
摘要:
请求格式:json,form-data,x-www-form-urlencoded,multipart/form-data 1.json:需要在请求头中添加Content-Type:application/json 2.x-www-form-urlencoded:需要在请求头中添加Content-T 阅读全文
摘要:
设置fiddler script步骤:rules>customize rules... 1.设置弱网: ctrl+f 搜索delay 设置完成勾选rules>performance>simulate modem speeds,注意此选项退出fiddler后需重新勾选才生效 statistics可以查 阅读全文
摘要:
按系统版本安装sqlncli或sqlncli_x64 阅读全文
摘要:
Innodb引擎:Innodb引擎提供了对数据库ACID事务的支持。并且还提供了行级锁和外键的约束。它的设计的目标就是处理大数据容量的数据库系统。 MyIASM引擎(原本Mysql的默认引擎):不提供事务的支持,也不支持行级锁和外键,InnoDB不支持全文索引,而MyISAM支持 阅读全文
摘要:
1. split url = 'http://xxx.xxx/?900982-0-0.html'#'str'.split(sep=None, maxsplit=-1)#sep -- 分隔符,默认为所有的空字符,包括空格、换行(\n)、制表符(\t)等。#maxsplit -- 分割次数。默认为 -1 阅读全文
摘要:
1.robot是python3的指令,pybot是python2的指令 阅读全文
只有注册用户登录后才能阅读该文。 阅读全文
摘要:
import requests # Requests 继承了urllib2的所有特性。 # Requests支持HTTP连接保持和连接池,支持使用cookie保持会话,支持文件上传, # 支持自动确定响应内容的编码,支持国际化的 URL 和 POST 数据自动编码 # 安装方式: pip insta 阅读全文
摘要:
#coding=utf-8 import requests from bs4 import BeautifulSoup resp=requests.get('https://www.baidu.com') #请求百度首页 #resp=requests.request('get','https://w 阅读全文