现在面试要求越来越高。
其实重点不在于是否愿意花钱购买,而是购买之后能否坚持学完自己所购买的内容,买了不看和没买没啥区别。
Python 垃圾回收和我们常规测试工作相关性较少,需要工作之余自己深入研究。
4 年
昵称都可以山寨 这个好尴尬。。
正在孤独的慢慢啃 pytest 文档,相比于 unittest,pytest 功能更加强大,而且兼容 unittest。
多面试几次被虐了就懂了。。
难道你就是传说中的从删库到跑路的切格瓦拉
这个看是什么级别的测试,初级点点点,纯黑盒测试就完全不必要掌握这些。
只能多看书恶补了。
分代回收就不用,但是需要更大的空间。
喝完奶茶继续加班。。
今天公司的福利:奶茶一杯。。。
不客气,愿每一个未来面试的不被此问题卡住。
平时多学习,厚积薄发。
嗯,有难有易,比较全面。
我要自学网就有 Pyhton 系列的自动化视频教程:
嗯,面试结束后赶紧回家找资料整理,希望以后大家不要被这个问题给坑到了。。
可能为了检测面试人员内功是否深厚吧,可惜第一招就把我打趴下了。
国内 Top10 某视频网站。
顺便补充本次面试问到的问题:
算不上缺点吧,适合自己的才是最好的。Postman 毕竟是一个工具,对于编码不是很熟悉的同学来说上手容易,不过相对于编写代码
不足之处以下几点:
Postman+Newman+Jenkins 就可以做接口自动化,详见:Postman 接口自动化测试
在 build.xml 补充下面两段代码
<delete file="${testpath}/${test}.html"/>
<delete file="${testpath}/${test}.jtl"/>
补充后,run 部分的配置如下:
<target name="run">
<echo>funcMode = ${funcMode}</echo>
<!-- 运行前删除旧的html和jtl-->
<delete file="${testpath}/${test}.html"/>
<delete file="${testpath}/${test}.jtl"/>
<jmeter
jmeterhome="${jmeter.home}"
testplan ="${testpath}/${test}.jmx"
resultlog="${testpath}/${test}.jtl">
<!--
<jvmarg value="-Xincgc"/>
<jvmarg value="-Xmx128m"/>
<jvmarg value="-Dproperty=value"/>
<jmeterarg value="-qextra.properties"/>
-->
<!-- Force suitable defaults -->
<property name="jmeter.save.saveservice.output_format" value="xml"/>
<property name="jmeter.save.saveservice.assertion_results" value="all"/>
<property name="jmeter.save.saveservice.bytes" value="true"/>
<property name="file_format.testlog" value="${format}"/>
<property name="jmeter.save.saveservice.response_data.on_error" value="${funcMode}"/>
</jmeter>
</target>