4

I'm unable to active Redline recording button in SeleniumIDE,I have recorded my steps then clicked on Redline recording button & run the recorded steps but in this time Redline recording button is showing as inactive & after running the steps again clicked on Redline recording button to save jmx file but it appears that- "Nothing to Save"

enter image description here

UBIK LOAD PACK
  • 33,980
  • 5
  • 71
  • 116
Farzana Mim
  • 55
  • 1
  • 5

3 Answers3

6

I was able to get this work with using trello.com as the target, I will document steps below.

1 - Setup Options to only record from trello.com enter image description here

2 - Start RedLine13 button, Playback, and Save - I open up trello and add a new card, click on existing card, and close dialog enter image description here

3 - Open up in JMeter enter image description here

4 - JMX File Output and Running Test

Richard Friedman
  • 932
  • 7
  • 11
  • Me also able to record the steps & download JMX file for "Trello.com" site but for signing into my project or for gmail sign in couldn't be able to record by following your steps .:) – Farzana Mim Sep 27 '16 at 10:04
  • Change the includes option to .* so it captures all domains. That said, it will take further work to refine the JMX if you want to capture output from google login and pass it along to the trello login. – Richard Friedman Sep 27 '16 at 15:16
1

That is just a "visual issue" you should hit the JMETER button one time then play the entire test suite on selenium and when the test suite have been completed hit the JMETER button again and a modal windows to save as JMETER sould appear

1

The way to fix this problem is really easy but unintuitive: simply remove the "http:" header in the url (in the includes options of the JMeter plugin)

Example:

-wrong: https://stackoverflow.com

-rigth: stackoverflow.com

Img with correct form

I hope that this steps helped to solve your

nexus933
  • 11
  • 2