Anonymous User
Anonymous User

Reputation: 13

Error popup appears when trying to open script in jmeter recorder by Blazemeter chrome extension

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.

Upvotes: 0

Views: 684

Answers (1)

Dmitri T
Dmitri T

Reputation: 168157

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

Upvotes: 2

Related Questions