摘要: 一、强制等待(必须等待设置的时间结束才会继续执行后续步骤 import time time.sleep(10) 二、隐性等待(在设定的时间内刷新当前整个页面直到定位到元素直到找到元素,ps:类似于F5刷新) from selenium.webdriver.support.wait self.driv 阅读全文
posted @ 2021-04-11 21:59 one*love 阅读(265) 评论(0) 推荐(0) 编辑
摘要: 【mysql/oracle命令】1)desc 表名; 查询表结构2)select * from 表名; 查询表所有内容3)create table 表名(字段1 数据类型,字段2 数据类型....);创建表4)insert into 表名 values(‘数据’,‘数据’);增加表数据5)alter 阅读全文
posted @ 2021-04-11 21:46 one*love 阅读(43) 评论(0) 推荐(0) 编辑
摘要: root su root 切换权限useradd 选项 用户名 添加用户password 选项 用户名 设置密码userdel 选项 用户名 删除用户1. ll 查看当前目录所有内容2. cd/ 返回到根目录3. cd .. 返回上一级目录4 cd目录 进入指定目录 ps-ps-5 pwd 查看当前 阅读全文
posted @ 2021-04-11 21:45 one*love 阅读(33) 评论(0) 推荐(0) 编辑
摘要: import random import MySQLdb def prepare_data(): result = [] type = ["a", "b", "c", "d", "e"] for i in range(50000): index = random.randint(0, 4) resu 阅读全文
posted @ 2021-03-26 15:32 one*love 阅读(904) 评论(0) 推荐(0) 编辑
摘要: # coding:utf-8 import requests import re def load_page(url): # request = requests.Request(url=url) # response = urllib2.urlopen(request) # data = resp 阅读全文
posted @ 2021-03-18 09:23 one*love 阅读(33) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python # -*- coding: utf-8 -*- # @Author : jack import re class reUnit(): """ 通过正则表达式获取指定字符串值方法,如果结果不唯一,则返回多个 """ def reUnit(anyStr,lef 阅读全文
posted @ 2020-12-22 11:53 one*love 阅读(3174) 评论(0) 推荐(0) 编辑
摘要: alt+enter 快速导包 Ctrl + Shift + F 全局查找 Ctrl + Shift + R 全局替换 阅读全文
posted @ 2020-12-22 09:48 one*love 阅读(68) 评论(0) 推荐(0) 编辑
摘要: #提取URL所有key或者单个key方法 url="http://192.168.1.1:8080/login?from=t8t-dcp-dcs&ID=172180009&name=xiaoming" a=url.split("?")[1] #利用split方法根据?号进行截取返回一个字符串 结果: 阅读全文
posted @ 2020-12-22 09:42 one*love 阅读(378) 评论(0) 推荐(0) 编辑
摘要: text = "今天晚上一起吃饭哈"assert text.__contains__("吃饭") 阅读全文
posted @ 2020-12-19 12:30 one*love 阅读(731) 评论(0) 推荐(0) 编辑
摘要: class testStoreAppointmentAdd(self): arr = random.sample(["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"], 8) #获取一个8位数随机数 RandomNum = "".join(arr) # 阅读全文
posted @ 2020-12-18 12:15 one*love 阅读(106) 评论(0) 推荐(0) 编辑