Hi, I propose to add browser button to all beanshell elements Antonio
New Revision: 1811895 URL: http://svn.apache.org/viewvc?rev=1811895&view=rev Log: Bug61607 Add browse button in all beanshell elements to select beanshell script Modified: jmeter/trunk/src/components/org/apache/jmeter/assertions/gui/BeanShellAssertionGui.java jmeter/trunk/src/core/org/apache/jmeter/util/BeanShellBeanInfoSupport.java jmeter/trunk/src/protocol/java/org/apache/jmeter/protocol/java/control/gui/BeanShellSamplerGui.java jmeter/trunk/xdocs/changes.xml
Hi Antonio, Although browse is nice there are big drawbacks when you variabilize this field. You need to select Edit in combo, you enter something then save Try then to update it and save, your data is deleted. So UX is weird. As I usually only variabilize those usung __P it ends up being less ux friendly than before particularly for CSV Dataset
Hi Philippe, I don't understand your problem In my Linux machine I don't need to select Edit in combo to variabilize this field If I modify the field already variabilized, I just need to change of field or push enter before save it to avoid the change of the modification Antonio
New Revision: 1815627 URL: http://svn.apache.org/viewvc?rev=1815627&view=rev Log: Bug 61607 : Fix Beanshel GUI bug Modified: jmeter/trunk/src/core/org/apache/jmeter/util/BeanShellBeanInfoSupport.java Modified: jmeter/trunk/src/core/org/apache/jmeter/util/BeanShellBeanInfoSupport.java URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/util/BeanShellBeanInfoSupport.java?rev=1815627&r1=1815626&r2=1815627&view=diff ============================================================================== --- jmeter/trunk/src/core/org/apache/jmeter/util/BeanShellBeanInfoSupport.java (original) +++ jmeter/trunk/src/core/org/apache/jmeter/util/BeanShellBeanInfoSupport.java Fri Nov 17 21:04:45 2017 @@ -51,13 +51,14 @@ public abstract class BeanShellBeanInfoS p = property("filename"); p.setValue(NOT_UNDEFINED, Boolean.TRUE); p.setValue(DEFAULT, ""); + p.setPropertyEditorClass(FileEditor.class); createPropertyGroup("filenameGroup", new String[] { "filename" }); p = property("script"); p.setValue(NOT_UNDEFINED, Boolean.TRUE); p.setValue(DEFAULT, ""); - p.setPropertyEditorClass(FileEditor.class); + p.setPropertyEditorClass(TextAreaEditor.class); createPropertyGroup("scripting", new String[] { "script" }); }
New Revision: 1815993 URL: http://svn.apache.org/viewvc?rev=1815993&view=rev Log: [Bug 61591] Update templates : recording-with-think-time and recording Modified: jmeter/trunk/bin/templates/recording-with-think-time.jmx jmeter/trunk/bin/templates/recording.jmx
Bad comment Sorry Antonio
This issue has been migrated to GitHub: https://github.com/apache/jmeter/issues/4517