摘要:
su root //进入root用户vim /etc/sudoers //打开sudo的配置文件 先找到如下图所示的一行:(root ALL=(ALL)ALL) 然后给普通用户kcc添加sudo权限,在“root ALL=(ALL)ALL”这一行下面,加入一行(用户名kc ALL=(ALL) ALL 阅读全文
摘要:
1、查看可用版本 docker search redis 2、拉取最新版的 Redis 镜像 docker pull redis:latest 3、查看本地镜像 docker images 4、运行容器 docker run -itd --name redis-test -p 6379:6379 r 阅读全文
摘要:
1、在项目根目录下创建 statics 目录。 2、在 settings 文件的最下方配置添加以下配置: STATIC_URL = '/static/' # 别名 STATICFILES_DIRS = [ os.path.join(BASE_DIR, "statics"), ] 3、在 static 阅读全文
摘要:
Win7 下的Docker Desktop 安装 下载 (http://mirrors.aliyun.com/docker-toolbox/windows/docker-toolbox/) 注意官网上最新的toolbox 对应系统win10 安装: 按照提示安装即可(系统安装git 就不选择git组 阅读全文
摘要:
https://github.com/robotframework/PythonRemoteServer 允许在不同于 Robot Framework 本身运行的进程或机器上托管测试库。 安装 pip install robotremoteserver || python setup.py inst 阅读全文
摘要:
pabot robot framewrok 测试并行执行器,可以将一个执行拆分为多个执行并节约测试执行时间 安装 pip install -U robotframework-pabot || setup.py install(https://github.com/mkorpela/pabot) 基础 阅读全文
摘要:
1、Robot Framework库的路径 Lib\site-packages\robot\libraries 2、自定义用户库 1、Lib\site-packages 添加 MyLibrary 2、 MyLibrary添加count.py #coding=utf-8 class Count(obj 阅读全文
摘要:
BeanShell PreProcessor获取请求http-Get 参数进行排序后进行签名加密后重新发送: 例子: 代码: import org.apache.jmeter.protocol.http.sampler; import org.apache.jmeter.config.Argumen 阅读全文
摘要:
upload.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <h1>hello worlds</h1> <form action="/kl 阅读全文
摘要:
def get_chrome_options(): options = GoogleOptions() experimentalFlags = ['same-site-by-default-cookies@2', 'cookies-without-same-site-must-be-secure@2 阅读全文