You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2019/09/21 16:54:41 UTC

[jmeter] branch master updated: Bug 63355 - View Results Tree: Browser view option is not Available with Java 11, document how to make it available (edit)

This is an automated email from the ASF dual-hosted git repository.

pmouawad pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git


The following commit(s) were added to refs/heads/master by this push:
     new 1c2bb65  Bug 63355 - View Results Tree: Browser view option is not Available with Java 11, document how to make it available (edit)
1c2bb65 is described below

commit 1c2bb650be20856bd2e1ee0fbc4d56d5e647e97a
Author: pmouawad <p....@ubik-ingenierie.com>
AuthorDate: Sat Sep 21 18:54:25 2019 +0200

    Bug 63355 - View Results Tree: Browser view option is not Available with
    Java 11, document how to make it available (edit)
    
    This resolves https://bz.apache.org/bugzilla/show_bug.cgi?id=63355
---
 xdocs/changes.xml                   |  1 +
 xdocs/usermanual/hints_and_tips.xml | 29 +++++++++++++++++++++++++++++
 2 files changed, 30 insertions(+)

diff --git a/xdocs/changes.xml b/xdocs/changes.xml
index e425518..f346b9a 100644
--- a/xdocs/changes.xml
+++ b/xdocs/changes.xml
@@ -135,6 +135,7 @@ to view the last release notes of version 5.1.1.
     <li><bug>63452</bug>Tools / Import from cURL: Complete coverage of all command line options that are valid in JMeter use case. Contributed by Ubik Load Pack (support at ubikloadpack.com)</li>
     <li><bug>63419</bug>Tools / Import from cURL: Add ability to import a set of cURL commands from a file. Contributed by Ubik Load Pack (support at ubikloadpack.com)</li>
     <li><bug>63760</bug>JOrphanUtils: add random alphanumeric password generator</li>
+    <li><bug>63355</bug>View Results Tree: Browser view option is not Available with Java 11, document how to make it available</li>
 </ul>
 
 <ch_section>Non-functional changes</ch_section>
diff --git a/xdocs/usermanual/hints_and_tips.xml b/xdocs/usermanual/hints_and_tips.xml
index bfde901..52d221c 100644
--- a/xdocs/usermanual/hints_and_tips.xml
+++ b/xdocs/usermanual/hints_and_tips.xml
@@ -226,6 +226,35 @@ will match any component that contains test in searchable elements of the compon
             it is recommended to put overrides for them into <code>user.properties</code> file.
         </p>
     </subsection>
+    <subsection name="&sect-num;.6 Browser renderer is not displaying in View Results Tree" anchor="browser_renderer_view_results_tree">
+        <p>
+            If you're using OpenJDK or Oracle Java version higher than 8, you'll notice that Browser Renderer is not displayed.
+            This is because JavaFX is not embedded.
+            In order to have this element you need to follow the below procedure.
+        </p>
+        <ul>
+            <li>Follow this <a href="https://openjfx.io/openjfx-docs/" >documentation</a> to install Java FX for your OS and Java version. <br/>
+            If you don't want to read it, here are the necessary steps:
+                <ul>
+                    <li>Go to <a href="Gluon website">https://gluonhq.com/products/javafx/</a> and download the runtime for your Java version and OS</li>
+                    <li>Unzip it</li>
+                    <li>Then configure a variable pointing to lib folder:<br/>
+                        Linux/MacOSX:<br/>
+                        <source>export PATH_TO_FX=path/to/javafx-sdk-XX/lib</source>
+                        Windows:<br/>
+                        <source>set PATH_TO_FX=path/to/javafx-sdk-XX/lib</source>
+                    </li>
+                </ul>
+            </li>
+            <li>Then open bin/jmeter file for Linux/MacOSX, bin/jmeter.bat for Windows, find JAVA9_OPTS variable and add:<br/>
+               Linux/MacOSX:<br/>
+               <source>--module-path $PATH_TO_FX --add-modules javafx.web,javafx.swing</source>
+               Windows:<br/>
+               <source>--module-path %PATH_TO_FX% --add-modules javafx.web,javafx.swing</source>
+            </li>
+            <li></li>
+        </ul>
+    </subsection>
 </section>
 
 </body>