摘要:
在 C:\Tools\apache-jmeter-5.4.3\extras\jmeter-results-report_21.xsl 中找到这句:<td><xsl:value-of select="assertionResult/failureMessage" /></td> 修改为: <td> < 阅读全文
摘要:
<property environment="env"/> <property name="JMeter.home" value="${env.JMETER_HOME}"/> 阅读全文
摘要:
Jmeter+Ant生成结果报告时,MinTime、MaxTime显示NaN,如下图: 解决办法:JMeter 根目录中找到lib下的serializer-2.7.2.jar、xalan-2.7.2.jar,复制到ant的lib中即可! 阅读全文
摘要:
原因:是因为API返回的报文里还有特殊字符&# 解决办法: 修改jmeter.properties jmeter.save.saveservice.response_data=false jmeter.save.saveservice.response_data.on_error=false 阅读全文
摘要:
1.将Automation测试工程和AutomationBase工程都import到Eclipse 2.设置 Debug Configurations... 设置要调试的Class入口 3.在Base工程里改代码,打断点,Maven Install,不需要其他的操作了,接下来开始快乐的调试之旅吧 4 阅读全文
摘要:
去掉每行某个字符串前面的字符 删除S 之前的所有字符用:^.*s 删除S 之后的所有字符用:s.*$ 原始数据(省略一万行) Line 30: 2022-02-11 13:54:31.580 [TestNG-test=Regression-1] INFO c.m.a.d.u.o.LooseyJSON 阅读全文
摘要:
Git拉取代码失败,报SSL certificate的错误 fatal: unable to access '******': SSL certificate problem: unable to get local issuer certificate 原因:是防火墙禁止了 解决办法(Win10) 阅读全文
摘要:
https://stackoverflow.com/questions/49946728/puppeteer-waitforselector-on-multiple-selectors 阅读全文
摘要:
eclipse java maven testng The import org.testng cannot be resolved 需要在eclipse的maven 项目里加上TestNG的library 阅读全文
摘要:
https://blog.csdn.net/qq_43344109/article/details/105404728 Maven项目打包时出现以下错误:原因是没有配置成jdk目录 解决步骤: 找到本机JDK所在路径,如果不知道,可以win键+R输入cmd,打开输入指令java -verbose查看 阅读全文