小肥羊要进步

12 2020 档案

发布更新最新代码的2个方法
摘要:代码分为core,API,web, 文件夹fetch-Tortoise ,记得勾选rebase core 和APi 我一直在visual studio2019上打开对应的sln文件去rebuild solution Web 就是powershell去grunt debug /grunt build 阅读全文

posted @ 2020-12-31 11:31 小肥羊要进步 阅读(255) 评论(0) 推荐(0) 编辑

另外部署一个分支web端
摘要:1,目前本地部署的测试环境 达蒙有个挺大的需求需要在分支上测试,同时也需要在主分支测试其他的需求,来回切换switch不同分支发布很不方便 于是创建一个新的环境专门测试16730 添加一个这个 IIS里添加一个application 以后登录页面直接就可以 http://192.168.8.226/ 阅读全文

posted @ 2020-12-30 10:17 小肥羊要进步 阅读(88) 评论(0) 推荐(0) 编辑

python12文件的读写
摘要:#1.读本地文件,ANSI为GBK编码 p=open("e:\\a.txt") content=fp.read() print(content) fp.close() #2.读 fp=open("e:\\a.txt","r",encoding="gbk") fp.readlines() fp.clo 阅读全文

posted @ 2020-12-29 22:55 小肥羊要进步 阅读(159) 评论(0) 推荐(0) 编辑

UNC 测试
摘要:今天有个测试需求如下: able to keep file on a shared network location so they can be accessed from any server 目前现状: A UNC path can be entered through the CLI but 阅读全文

posted @ 2020-12-29 16:01 小肥羊要进步 阅读(154) 评论(0) 推荐(0) 编辑

python011
摘要:class MikeError(Excepton):pass print(1) try: #将可能出现错误的代码放在try if value=="type":,try 和except要同时出现,或者finally: raise TypeError if value=="zero": raise Ze 阅读全文

posted @ 2020-12-27 23:05 小肥羊要进步 阅读(76) 评论(0) 推荐(0) 编辑

python10常用字符串
摘要:>>> s="abc">>> type(s)<class 'str'>>>> s=u"abc">>> type(s)<class 'str'>>>> s=b"abc">>> type(s)<class 'bytes'>>>> s="abc">>> d="abc">& 阅读全文

posted @ 2020-12-23 23:28 小肥羊要进步 阅读(304) 评论(0) 推荐(0) 编辑

浏览器清除缓存
摘要:引发的缘由: 1.网站一直无法登录或者报错 2.测试环境新发布代码测试 清除浏览器缓存类的 1.F12 2.Ctrl+F5 3. 阅读全文

posted @ 2020-12-23 12:02 小肥羊要进步 阅读(412) 评论(0) 推荐(0) 编辑

python09字符串
摘要:字符串 类型1:str类型,用于内存中进行 类型2:bytes类型,用于储存在文件或者在网络上传输 >>> s="abc">>> type(s)<class 'str'>>>> s.encode("gbk") #结果丢弃了b'abc'>>> s=s.encode("gbk") #结果存到变量中以后可 阅读全文

posted @ 2020-12-20 22:54 小肥羊要进步 阅读(78) 评论(0) 推荐(0) 编辑

windows忘记用户密码
摘要: 阅读全文

posted @ 2020-12-16 13:52 小肥羊要进步 阅读(43) 评论(0) 推荐(0) 编辑

测试 一个模块只读disabled对于hosted client
摘要:有一个模块disabled /read only for hosted client 我进行测试肯定是想要下hosted client用户和不是hosted client 看这个模块的状态 平时测试也是自己搭建的本地测试环境发布最新的代码 可是如何把用户改为host client 或者非host c 阅读全文

posted @ 2020-12-09 09:59 小肥羊要进步 阅读(85) 评论(0) 推荐(0) 编辑

python08_递归
摘要:递归:函数自己调用自己 1.同名函数,在函数定义内部调用自己 2.调用的时候,一定要有结束的条件 >>> def p():... print(10)... p()...>>> for i in range(5):... print(10)...1010101010 >>> def p(n):... 阅读全文

posted @ 2020-12-08 22:56 小肥羊要进步 阅读(93) 评论(0) 推荐(0) 编辑

python07_函数
摘要:多个参数定义函数 >>> def print_sth(s1,s2,s3):... print(s1,s2,s3)...>>> print_sth(1,2,3)1 2 3 >>> print_sth("a","b","c")a b c >>> print_sth(s3="c",s2="b",s1="a 阅读全文

posted @ 2020-12-07 22:59 小肥羊要进步 阅读(65) 评论(0) 推荐(0) 编辑

python06_函数
摘要:计算字符串长度 s="abc" result=0 for i in s: result+=1 print(result) 使用函数 def count_letters(s): """此函数主要用于统计字符串个数""" result=0 for i in s: result+=1 return res 阅读全文

posted @ 2020-12-05 21:38 小肥羊要进步 阅读(99) 评论(0) 推荐(0) 编辑

python05_Practice
摘要:1统计输入的字符有多少个?知识点:1.输入 2.遍历 3.有储存结果的变量 4.模板字符串s=input("请输入一个字符串:“) result=0 for i in s: result+=1 print("输入的内容%s,一共有%s个字符"%(s,result)) 2.统计输入的字符多少个字母和数 阅读全文

posted @ 2020-12-04 23:49 小肥羊要进步 阅读(202) 评论(0) 推荐(0) 编辑

测试那些年被打过的脸,持续更新
摘要:1,弹出框的报错与实际的错误命名不统一2,弹出框格式与其他模块的不一样格式,包括里面的unit layout3,展开下拉框的显示内容跟数量和需求设计的不一样4.最近遇到一个问题要求通过系统A直接登录系统B测试功能实现同时还要考虑权限负向的问题如果没有权限,A是不可以直接跳转到B系统当不给B权限登录A 阅读全文

posted @ 2020-12-03 14:47 小肥羊要进步 阅读(81) 评论(0) 推荐(0) 编辑

python04
摘要:C:\Users\liuwe>pythonPython 3.6.5 (v3.6.5:f59c0932b4, Mar 28 2018, 17:00:18) [MSC v.1900 64 bit (AMD64)] on win32Type "help", "copyright", "credits" o 阅读全文

posted @ 2020-12-02 23:06 小肥羊要进步 阅读(112) 评论(0) 推荐(0) 编辑

python03
摘要:C:\Users\liuwe>pythonPython 3.6.5 (v3.6.5:f59c0932b4, Mar 28 2018, 17:00:18) [MSC v.1900 64 bit (AMD64)] on win32Type "help", "copyright", "credits" o 阅读全文

posted @ 2020-12-01 22:45 小肥羊要进步 阅读(93) 评论(0) 推荐(0) 编辑

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

导航

统计

点击右上角即可分享
微信分享提示