码迷,mamicode.com
首页 > 系统相关 > 详细

Jmeter BeanShell断言

时间:2019-08-24 11:46:47      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:ring   bean   16px   pac   引用   not found   variable   bsp   namespace   

这篇文章用来记录编写beanshell断言遇到得问题。

 

问题1:JSONObject not found in namespace

流程:在beanshell下写代码如下:

1 String response_data = prev.getResponseDataAsString();
2 JSONObject data_obj = new JSONObject(response_data);
3 
4 String current_page = data_obj.get("data").get("current_page").toString();
5 log.info("当前第几页:"+current_page)

报错:Typed variable declaration : Class: JSONObject not found in namespace

报错内容已经说得很明确了,在命名空间里没有找到JSONObject。而我却在使用,肯定报错。

解决方法:点击下载jar包,放入jmeter安装目录/lib/ext即可。然后在beanshell中写入:import org.json.*; 引用即可

Jmeter BeanShell断言

标签:ring   bean   16px   pac   引用   not found   variable   bsp   namespace   

原文地址:https://www.cnblogs.com/youreyebows/p/11403948.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!