0

I recorded a script using blazemeter and it was showing me to save in 2 formats: Selenium only, Jmeter and selenium combined.

enter image description here

I downloaded both formats and tried opening in JMeter 4.0 but that shows an error popup with no details.

enter image description here

Please let me know how to go ahead with jmx extension.

Taazar
  • 1,545
  • 18
  • 27
  • 1
    If someone still looking for it, you need to login to blazemeter via extension to be able to download jmx file. above save dialog comes without login and dialog in answer below comes after logging in. you need to create account first obviously! – sanjay Aug 25 '20 at 09:27

1 Answers1

2

You can open only JMX files in JMeter, make sure to choose JMeter only (JMX) option when saving your recorded script:

enter image description here

This type of recording can be normally opened with JMeter.

With regards to Selenium only (YAML) and JMeter & Selenium combined (YAML) - you can open them using Taurus tool.

If you need to convert Taurus YAML file into .jxm you can do the following:

  1. Install Taurus
  2. Invoke the following command:

    bzt /path/to/recorded/test.yml -gui
    

Taurus will open the recorded script in JMeter GUI where you will be able to debug it, edit or save as .jmx script.

More information: Navigating your First Steps Using Taurus

Dmitri T
  • 159,985
  • 5
  • 83
  • 133