木吟

导航

2019年2月13日 #

Error "java.lang.NoClassDefFoundError:org/openxmlformats/schemas/spreadsheetml/x2006/main/CTExtensionList" in SoapUI

摘要: After upgrade readyAPI 1.9 to the higher version, pop up error "java.lang.NoClassDefFoundError:org/openxmlformats/schemas/spreadsheetml/x2006/main/CTE 阅读全文

posted @ 2019-02-13 11:38 木吟 阅读(3349) 评论(0) 推荐(0) 编辑

2018年12月7日 #

获取当前TestStep发送的request信息

摘要: 在当前test step的Script Assertion里添加 阅读全文

posted @ 2018-12-07 17:10 木吟 阅读(226) 评论(0) 推荐(0) 编辑

2018年7月23日 #

Git clone出现SSL certificate problem

摘要: 1 可以在cmd下,设置 git config --global http.sslVerify false git clone XXX 即可。 2 TortoiseGit设置 打开TortoiseGit设置-》Git->Save to:Global-》Edit global .gitConfig 里 阅读全文

posted @ 2018-07-23 13:44 木吟 阅读(355) 评论(0) 推荐(0) 编辑

2018年3月27日 #

在当前TestSuite/TestCase run之前先run另一个TestSuite/TestCase

摘要: 在当前的TestSuite/TestCase的Setup Script里面写上这段代码: 阅读全文

posted @ 2018-03-27 11:46 木吟 阅读(278) 评论(0) 推荐(0) 编辑

2018年1月5日 #

在eclipse中安装groovy插件

摘要: 在eclipse中安装groovy插件详细步骤: step 1:检查自己的eclipse版本:在help->About Eclipse中查看: step 2:进入 https://github.com/groovy/groovy-eclipse/wiki查找和自己eclipse对应版本的groovy 阅读全文

posted @ 2018-01-05 16:27 木吟 阅读(7062) 评论(0) 推荐(2) 编辑

2017年5月22日 #

更改TestStep的request header和获取TestStep的response header

摘要: 更改TestStep的request header for example 获取TestStep的response header 1. get the response header of the current test step 2. get the response header of whi 阅读全文

posted @ 2017-05-22 15:33 木吟 阅读(241) 评论(0) 推荐(0) 编辑

2016年9月27日 #

用Window Authentication的方式去连接SQLServer

摘要: 用Window Authentication的方式去连接SQLServer Connection String: jdbc:sqlserver://${serverName};databaseName=${tableName};IntegratedSecurity=true 还需要把sqljdbc_ 阅读全文

posted @ 2016-09-27 11:37 木吟 阅读(903) 评论(0) 推荐(0) 编辑

2016年9月5日 #

Disable testSuite and testCase on some environment

摘要: Reference DOC: http://sothatsit.com/computers-software/soapui/groovy-scripting-soapui/disable-setdisabled/ 阅读全文

posted @ 2016-09-05 11:17 木吟 阅读(259) 评论(0) 推荐(0) 编辑

2016年6月3日 #

JDBC driver connection string大全

摘要: Database / data source URL format / driver name Value Default port MySQL URL format: jdbc:mysql://:/ 3306 Driver name: com.mysql.jdbc.Driver Microsoft SQL Server URL format: jd... 阅读全文

posted @ 2016-06-03 16:45 木吟 阅读(1832) 评论(0) 推荐(0) 编辑

2016年6月1日 #

Parse xml/json[xpath/jpath]

摘要: import groovy.util.XmlSlurper import groovy.util.XmlParser import com.eviware.soapui.support.GroovyUtils import com.jayway.jsonpath.* def xmlStr = 'Some text!' def rootNode // use XmlSlurper to par... 阅读全文

posted @ 2016-06-01 16:45 木吟 阅读(417) 评论(0) 推荐(0) 编辑