摘要:
# -*- coding: utf-8 -*- # Auth :yuyu # pip install -i https://pypi.douban.com/simple/ pycryptodome from Crypto.Cipher import PKCS1_v1_5 from Crypto.Pu 阅读全文
摘要:
1 # !/user/bin/env python3 2 # -*- coding:utf-8 -*- 3 4 from selenium.webdriver.remote.webdriver import WebElement 5 from selenium.webdriver.remote.we 阅读全文
摘要:
一:下载locust 建议去到python环境变量下面:D:\PYTHON\Lib\site-packages 二:检查locust的版本 :locust -V 大写v 三:脚本写作: 标准写法可以分为两个 1.封装定义的任务类如 MyTaskTest(TaskSet) 继承TaskSet 类: 2 阅读全文
摘要:
windows from selenium import webdriver from selenium .webdriver.common.by import By import ttime chrome_options =webdriver.ChromeOptions() chrome_opti 阅读全文
摘要:
name: Jack ; salary: 12000 name :Mike ; salary: 12300 name: Luk ; salary: 10030 name :Tim ; salary: 9000 name: John ; salary: 12000 name: Lisa ; salar 阅读全文
摘要:
#磁盘空间 df -h 显示已经挂载的分区列表 du -sh [file] 估算当前使用磁盘空间 du -sk * | sort -rn 以容量大小递减排序 文件搜索 find find [file_path] -name test 从指定路径下开始找 名称 为test 文件和目录 find / - 阅读全文
摘要:
国内的其他镜像源清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/阿里云 http://mirrors.aliyun.com/pypi/simple/中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/豆瓣(doub 阅读全文
摘要:
#新建第一个脚本 #!/bin/bash # 使用/bin/sh来解释执行 # auto echo hello world! # 解释这个脚本是干什么的 # by authors cuzz # 作者和时间一些信息 echo "hello world!" #脚本赋权 chmod +x hello.sh 阅读全文
摘要:
常用库导入 from selenium import webdriver #导入webdriver模块 from selenium.webdriver.common.by import By # XPATH 定位模块 from selenium.webdriver.remote.webdriver 阅读全文
摘要:
#创建一个工作目录在所需要得位置 for example:git_test #初始化版本库git init会出现一个.git隐藏文件,该文件是就是控制版本 #添加暂存空间git add#提交到版本库git commit -m "discrible"#查询当前仓是否需要提交文件git status # 阅读全文