Hi
Nothing specific to JMeter
Within your test ,if you already have some form of logging use that ,
otherwise use your favorite (log4j, java logging ,or good old
system.out.println). Add statements around where you are creating the
browser - driver etc and if you have any catch (exception){ //do nothing}
then delete those , when your test method begins / ends. When you run this
via JMeter , it will print the logs wherever the logging frameowrk is
printing it (e.g. if you are using log4j , wherever the log4j configuration
says the log should go or if you are using System.out then ensure you run
Jmeter with a console and the values will get printed there)If you want the logs to come in JMeter log then I believe it is log4j2 with the config file in bin (please verify in doc) - if you use this as your log framework within the test then values should come in jmeter.log I dont know the setting in IntelliJ but you can usually see the entire java command that is being run in the IDE which can tell you things like classpath /additional VM or program parameters that you may be missing regards deepak On Fri, Sep 7, 2018 at 10:41 AM MaxwellFalcon <[email protected]> wrote: > It feels like you are on the right track here. Can you walk me through > how I > can go about determining what resource/dependency is missing? How can I > enable debug like you are talking about? Sorry I am very new to JMeter. > > > > -- > Sent from: http://www.jmeter-archive.org/JMeter-User-f512775.html > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > >
