一、自动化测试的概念
系统瓶颈自动化测试在性能系统负载能力稳定性过载操作下,使用程序而不是手动,可以提高测试效率,自动化测试可以自动使用代码模拟大量用户,让用户要求多页和多用户并发请求收集参数,并生成系统负载能力统计报告。
二、Python自动化测试基础必备知识点
1.Python中的标识符(变量、类别、方法等名称)
(1)必须由字母、数字或下划线组成
(2)数字不能开头
(3)对大小写敏感(区分大小写)true和True
age=20 _age=20
2.python中的关键字
'False','None','True','and', 'as','assert','async','await', 'break','class','continue','def', 'del','elif','else','except','finally', 'for','from','global','if','import', 'in','is','lambda','nonlocal','not', 'or','pass','raise','return','try', 'while','with','yield']
3.Python中的注释方法
age=10#单行注释 '''age=10 aa=10 '''多行注释
4.Python行和缩进
a=10 b=20 defsum(a,b): returna+b#符合要求 returna+b#不符合要求 print(sum(10,20))
5.多行语句
长句以\为实现多行语句 toal=item_one+\ item_two\ item_three 若语句中包含{}[]或(),则无需使用多行连接符号 toal=['a','c']