Unable to record script using Jmeter - jmeter

I am new to Jmeter and unable to record script using Jmeter. Eventhough I have followed the instruction provided by Apache.Jmeter.org. Pls update me with the few esay steps to move on.
Thanks,
Karthik.

If you are recording the script you can follow sequence,
Jmeter becomes your proxy and records everything between your real proxy and you so make proxy as localhost and port no as 8080 for http
if you are trying record a script for application running on proxy/local machine then above setup is enough
if you want to record script for a application on WAN then start jmeter like,
Jmeter - H "proxy which you are using" -P "port no" <-u "username" -a "password">
by default test plan is present when you start jmeter
add threadgroup and proxy recorder in script
start recording

If you have difficulties in setting up HTTP(S) Test Script Recorder (despite the fact it's perfectly documented in JMeter Proxy Step by Step guide you could try using Google Chrome JMeter plugin which allows JMeter scripts recording right from browser without needing to worry about proxies, browser extra configuration, SSL certificates, etc.
The most common error for using JMeter proxy is Do not use proxy for localhost / 127.0.0.1. If you have this or similar option in your browser make sure that it's disabled

I'm sorry, but the links are in spanish
http://josepablosarco.wordpress.com/2009/02/03/performance-testing-con-jmeter-paso-por-paso-para-grabar-escenarios/
http://carloszuluaga.wikidot.com/pruebascarga:grabar-script-web

Related

No Recording in jmeter

I am trying to record blazedemo.com with my Jmeter.
Steps that i have performed:
I Am using JMeter 5.1.1
Certificate Authority generated and imported into Chrome.
I am using jmeter in my office so it runs behind proxy and hence Checked that the port # in the HTTP(S) Test Script Recorder matches that in the proxy server set up in chrome.
Have added a Recording Controller to my Thread Group.
Have added Cache and Cookie Managers to my Thread Group.
When I try to start the HTTP Test Script Recorder it does not record anything in the recording controller.
I have ensured that the selected Target Controller in the HTTP(S) Test Script Recorder is a recording controller I've added to my Thread Group.
No Sampler/Requests are being added under the Recording Controller.
HTTP Request shows 200K.
You don't understand the concept and the network traffic flow.
Configure Chrome browser (however I would rather recommend to use Mozilla Firefox as it has separate proxy configuraiton) to use JMeter as the proxy, to wit:
proxy host: localhost or 127.0.0.1
proxy port: 8888
Configure JMeter to use your corporate proxy
This way the browser will use JMeter as the proxy so JMeter will be able to intercept and record requests and JMeter will use your corporate proxy in order to access the Internet.
An easier option could be using JMeter Chrome Extension, in this case you will not have to worry about proxies and SSL certificates.

Jmeter Recording of scripts behind Proxy

I need to perform JMETER TEST and Record a WEB Login Page, my company is behind the proxy. If I change the proxy and port of the Firefox to 8080, My Application doesn't launch.
If I don't change the proxy in Firefox, Then the recorder doesn't record the script.
I tried with IE, Where due to corporate policy, I cant change the policy and it is disabled.
How I get out of this situation?
You need to keep Firefox proxy settings to point to JMeter's HTTP(S) Test Script Recorder, i.e. server name should be localhost, port should be 8888
In its turn JMeter needs to be configured to use your corporate proxy, it can be done in 2 ways:
Via command-line parameters, like:
jmeter -H your_corporate_proxy_host -P your_corporate_proxy_port -n -t ...
this way the change will be applied only once
If you want the changes to be permanent you can add the following lines to system.properties file (located in the "bin" folder of your JMeter installation)
http.proxyHost=your_corporate_proxy_host
http.proxyPort=your_corporate_proxy_port
https.proxyHost=your_corporate_proxy_host
https.proxyPort=your_corporate_proxy_port
References:
Using JMeter behind a proxy
Configuring JMeter
Apache JMeter Properties Customization Guide

JMeter does not record any client server activity

I am trying to record any client-server activity in JMeter as a start for learning. I am doing this from a company network and hence have to go through proxy. Below are the steps I took for recording.
I read in JMeter documentation that for recording through proxy I have to invoke from command by giving the proper proxy. I used below code to invoke JMeter.
jmeter -H "proxy address taken from Internet settings" -P "8080" -u "Domain*UserName*" -a "password".
With this JMeter invokes fine and then I start the normal process of creating a thread group and a recording controller.
Now I am changing the internet setting in IE to local host and mentioning the port as given in JMeter (8080). I am keeping the proxy used as it is because without proxy no site will open except for the internal company sites.
Also I have imported the certificate which JMeter uses for the browsers.
This is now resolved
I added : JAVA_HOME variable in User environment variables with value pointing to jre installed on my machine C:\Program Files\Java\jdk1.8.0_60\jre
Also I had to select Java under HTTP Sampler Setting in HTTP(S) Test Script Recorder. (Though I don't get the purpose of this setting).
HTTP Sampler setting changed to Java
After doing above changes script is recording fine under company proxy.
I would recommend you to consider to use chrome extension for jMeter script recording without launching JMeter benefits: You can export the script written to JMeter and/or to cloud as well and run it on the cloud.

jmeter and unknown host exception

Please guide me what all are the settings needs to be done in jmeter while recording an https request through jmeter. I am getting unknown host exception while doing the same.
Thanks
Assumption 1: you have misconfigured JMeter and/or browser. You can get JMeter configured for recording in a couple of clicks using Templates feature.
From JMeter's main menu select File -> Templates -> Recording -> Create
Configure your browser to use the following proxy:
Proxy host: hostname or IP address where JMeter is running
Proxy port: 8888
Use proxy for all protocols (if available) - check
Bypass proxy for local addresses (or equivalent) - uncheck
Assumption 2: you (or your company) are using corporate proxy to access Internet and/or intranet. In that case you need to pass proxy details to JMeter startup script like:
jmeter -H proxy_host -P proxy_port ...
See Using JMeter behind a proxy guide for more information on the domain.
You can also consider an alternative solution which allows recording JMeter test right from browser without having to configure proxies, worry about SSL certificates, etc. Check out JMeter Chrome Extension
For unknown host exception, you should add the domain name and ip address pair in hosts file. For windows, this file is present at C:\Windows\System32\driver\etc\.
For example:
102.54.94.97 rhino.acme.com
For recording HTTP requests through JMeter, you have to configure some elements in your system. Steps are :
1.Add thread to test plan.
2.Add recording controller to plan
3.Add Http Proxy Server to Work Bench
4.address 127.0.0.1 port is 8888
5.Start proxy server
6.go on the recording when finished stop proxy server.
You have to configure your browser setting or install Certificates to record through JMeter. For step by step JMeter Proxy setting follow this PDF Step by step JMeter HTTP(S) Test Script Recorder Configuration

Recording the script in Jmeter for Applications having Google map

I'm new to jmeter.I'm testing the webapp running in local network which is having google map in it.I want to record using the recording controller.
I have set the proxy in jmeter by
-H webproxyServer -P 80 -u username -a password -N localhost
and used the jmeter proxy server in Browser. I tried to record the script.But Google map is not loading in the application.Can anyone help in this?
You're misusing -H command line argument. It's required when your host doesn't have Internet connection and JMeter cannot access the website under test only via proxy.
There are 2 options available on how to record network traffic into JMeter .jmx file:
HTTP(S) Test Script Recorder + Recording Controller. See JMeter Proxy Step by Step guide for the detailed walkthrough.
Google Chrome JMeter Extension which allows JMeter scripts recording right from browser without needing to worry about proxies, SSL certificates, headers, etc.

Resources