摘要: #coding:utf-8 from urllib.error import URLError import requests import common.Log as Log import ssl import urllib import os ''' @author: jinff @license: (C) Copyright 2016-2020, 中国制造 @contact: @file... 阅读全文
posted @ 2019-09-11 16:00 M兔 阅读(181) 评论(0) 推荐(0) 编辑
摘要: #coding:utf-8 import logging from logging import handlers from datetime import datetime import threading import os ''' logging模块简介 Python的logging模块提供了通用的日志系统,可以方便第三方模块或者是应用使用。这个模块提供不同的日志级别,并可以采用不同的方式记 阅读全文
posted @ 2019-09-11 15:58 M兔 阅读(270) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/df0128/article/details/83243822 阅读全文
posted @ 2019-08-14 09:23 M兔 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 1.burpsuite破解 http://ximcx.cn/post-110.html 阅读全文
posted @ 2019-08-13 14:04 M兔 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 一、查看系统TCP连接资源命令 netstat netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}' 二、系统TCP连接的介绍 TCP状态转移要点TCP协议规定,对于已经建立的连接,网络双方要进行四次握手才能成功断开 阅读全文
posted @ 2019-08-04 08:07 M兔 阅读(1153) 评论(0) 推荐(0) 编辑
摘要: 1.报Error creating bean with name 'dataSource' defined in class path resource 报错解决办法 解决方法: https://www.cnblogs.com/shifu8005/p/9873271.html 阅读全文
posted @ 2019-07-19 10:29 M兔 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 1.安装与破解 1)软件下载 https://www.jetbrains.com/idea/ 2)破解方法 方式一https://xclient.info/a/f0b9738a-36fd-8a97-a966-0d3db497092d.html 方式二、http://idea.lanyus.com/ 阅读全文
posted @ 2019-05-31 10:20 M兔 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 1. API 文档http://jmeter.apache.org/api/overview-summary.html 2. jmeter元件介绍 介绍各种线程组、吞吐量、响应时间报告等https://jmeter-plugins.org/wiki/Start/ 2. 插件下载 https://jm 阅读全文
posted @ 2019-05-15 10:40 M兔 阅读(499) 评论(0) 推荐(0) 编辑
摘要: 1.下载plugin http://dl.bintray.com/testng-team/testng-eclipse-release/zipped/ 由于我的eclipse是4.5,我下载的是6.11版本的testng插件 2. 找到eclipse安装目录下的dropins目录 新建testng文 阅读全文
posted @ 2019-04-03 10:48 M兔 阅读(415) 评论(0) 推荐(0) 编辑
摘要: 1.maven引入selenium jar包 2. 元素等待 1)显式等待 WebDriver driver = new ChromeDriver();driver.get("https://www.baidu.com");WebElement element = (new WebDriverWai 阅读全文
posted @ 2019-04-02 10:27 M兔 阅读(153) 评论(0) 推荐(0) 编辑