1

I would like to automate my JMeter recorded scripts using jp@gc - Chrome Driver Config to execute in chrome tab. Is there any way to run my recorded script in Chrome Driver Config without using javascript in jp@gc - WebDriver Sampler ?.

I am using Apache JMeter 3.2 version and for reference I have attached screenshot of my Test Plan, please verify it.

enter image description here

1 Answers1

1

JMeter acts on HTTP protocol level so it is not possible to convert recorded HTTP requests into full browser tests. You can convert existing Selenium tests into JMeter ones, but not in the opposite direction.

You can try using i.e. Selenium IDE to record your UI-based scenario, export it to Java language and use them as a basis for your WebDriver Sampler based scripts (it supports variety of languages), however you will still need to amend the recorded script as the code, generated by Selenium IDE won't be consumed by the WebDriver Sampler "as is"

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