logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

UnicodeDecodeError: ‘gbk‘ codec can‘t decode byte 0xa1 in position 45:illegal multibyte sequence问题解决

UnicodeDecodeError: 'gbk' codec can't decode byte 0xa1 in position 45:illegal multibyte sequence执行python自动化脚本,报一大串错误,有道了一下说是编码错误,我脚本也没有读取什么文件,网上查都是读取文件导致的,没有一个可行的解决办法,只能点报错信息一个一个的看,结果真发现一个自带ini文件,编码有点

#python
webUI自动化图片验证码登录、cookie绕过验证码问题解决

一、验证码由来:验证码,是一种区分用户是计算机还是人的公共全自动程序。可以防止:恶意破解密码、刷票、论坛灌水,有效防止某个黑客对某一个特定注册用户用特定程序暴力破解方式进行不断的登陆尝试,实际上用验证码是现在很多网站通行的方式,我们利用比较简易的方式实现了这个功能。这个问题可以由计算机生成并评判,但是必须只有人类才能解答对于web应用程序来讲,处于安全性考虑,在登录的时候,都会设置验证码,验证码的

#python
Windows系统下:jenkins+selenium+TestNG一步搞定简单自动化持续集成

Windows系统下:jenkins+selenium+TestNG一步搞定简单自动化持续集成注意!注意!本篇只介绍Windows系统下的操作!1.安装jenkins,最好从官网下载并安装:https://jenkins.io/download/,安装过程很简单,一路下一步就可以。安装过程中的小插曲,如图:然后按照导航默认选择的进行启动jenkins服务即可。【

#测试#java#selenium +1
python如何输出大小写字母加数字

Linux操作数据库更新索引小知识点记录一下

#python
pycharm安装requests库:Try to run this command from the system terminal. Make sure that you use the问题解决

1.问题引入:写自动化脚本需要用到requests包,就在pycharm中安装,结果报错:Try to run this command from the system terminal. Make sure that you use the correctversion of 'pip' installed for your Python interpreter located at .....

#python
python报错:TypeError: missing 1 required positional argument: ‘self‘

python报错:TypeError:missing 1 required positional argument: 'self'问题:class test:def test01(self):passif __name__ == "__main__":test.test01()--------------------------------------如上执行,会报错:TypeError: tes

#python
python报错:TypeError: missing 1 required positional argument: ‘self‘

python报错:TypeError:missing 1 required positional argument: 'self'问题:class test:def test01(self):passif __name__ == "__main__":test.test01()--------------------------------------如上执行,会报错:TypeError: tes

#python
selenium.common.exceptions.TimeoutException: Message: 问题解决

selenium.common.exceptions.TimeoutException: Message: 问题解决好几天没学基础知识了,开始写自动化的框架了,中间遇到的问题,解决之后都记录下~写了一个find_elements文件,调试的时候一执行报错:D:\my\python\python.exe D:/my/learning/kuangjia/ZTKXin/Utilpackage/find_

ERROR: Could not find a version that satisfies the requirement XXXXX (from versions: none)问题解决

ERROR: Could not find a version that satisfies the requirement XXXXX (from versions: none)问题解决

#pycharm#ide#python
Python生成allure测试报告,allure使用详细说明

Python+pytest+allure生成测试报告。风险和困难中往往夹杂着机会,不断学习,情绪和能力都可以通过学习得到提升。人生十年,加油!

#pycharm#ide#python
到底了