Appreciate.. I was zero in Jmeter.. this video gave me enough confidence...thank you
@RaghavPal7 ай бұрын
Glad I could help
@JozefKruzelak3 жыл бұрын
You Raghav have a talent to explain things in such understandable way :-) I am greatful for these videos
@RaghavPal3 жыл бұрын
Thanks a ton Jozef
@praveenkumarr45293 жыл бұрын
@@RaghavPal Hi Raghav, thank you for the explanation of JMETER lecture series. I have a query in my mind that can we automate web application (not Performance testing) using JMETER tool. Could you please clarify it.thank you
@fredycastellanos4506 ай бұрын
Estoy agradecido por la explicación, estaba bastante confundido, te felicito, haces un gran trabajo. puede ejecutar bien el ejercicio. saludos desde colombia
@RaghavPal6 ай бұрын
Muy bienvenido
@thilagavathiaruchamy25647 ай бұрын
Very good content for beginners
@RaghavPal7 ай бұрын
Glad you liked it
@primesport32964 жыл бұрын
Hello sir, Thanks a lots for all videos. I am beginner in Jmeter, please add videos - performance testing of Mobile App, API , Webservices. WISH YOU ALL THE BEST sir. !!!
@RaghavPal4 жыл бұрын
Noted. You will find all here - automationstepbystep.com/
@derelictmanchester8745 Жыл бұрын
Good instruction, thank you..👍👍
@RaghavPal Жыл бұрын
Most welcome
@IT_Enthusiastic4 жыл бұрын
Hi Raghav sir...Please make available for public those remaining 3 video series in this playlist...Thank you so much for your efforts...
@RaghavPal4 жыл бұрын
Sure Syed, they are in processing and will be published by next week
@vasukumar58Ай бұрын
Hello , I have a requirement of post file upload request with access tokens. How to club the tokens (authentication) and then pass the body parameters (mandatory feilds) to upload the file
@RaghavPalАй бұрын
Vasu Here’s how to handle file upload with an access token in JMeter: Add a Thread Group: Right-click your test plan, select Add > Thread (Users) > Thread Group Add an HTTP Header Manager: Right-click Thread Group, select Add > Config Element > HTTP Header Manager Add a header: Name: Authorization Value: Bearer Add an HTTP Request Sampler: Right-click Thread Group, select Add > Sampler > HTTP Request. Configure: Method: POST URL: Enter the endpoint URL. Body Data: Leave empty for now Enable File Upload: In the HTTP Request sampler, go to the Files Upload tab. Add your file: File Path: Full path to your file Parameter Name: The parameter expected by the API (e.g., file). Add Body Parameters: Switch to the Body Data tab in the same HTTP Request sampler. Add your mandatory fields in JSON format: { "key1": "value1", "key2": "value2" } Run and Verify: Add a listener (View Results Tree or View Results in Table) to monitor the response This configuration will upload the file and pass both the access token and mandatory parameters together -
@Shaa4046 ай бұрын
Hi Raghav, I need help please how can I send a GET request on Website, I tried using "Record Controller" but I see POST request , is there a video on how to search on website using a unique ID please send here, greatly appreciated and very thankful for your hard work on this JMeter training
@RaghavPal6 ай бұрын
Shaan If while recording you are getting a post request, then that is how the website works for that particular action. But if you want to explicitly try a GET request, can check this: To send a GET request in JMeter, follow these steps: 1. Create a Test Plan: - Open JMeter and create a new Test Plan. - Add a Thread Group element to simulate users. Set the number of threads (users) and other properties. - Add an HTTP Request sampler inside the Thread Group. 2. Configure the HTTP Request: - Select the HTTP Request sampler. - In the Name field, enter a descriptive name (e.g., "Home Page"). - Set the Path field to the URL path you want to request (e.g., "/"). - Ensure the Method is set to GET. 3. Run the Test: - Save your Test Plan. - Run the test to send the GET request to the specified URL. Remember to adjust the URL and other parameters based on your specific use case. If you encounter any issues, check the request details and ensure you're not inadvertently following redirects or using incorrect settings --
@natrajanr39684 жыл бұрын
Raghav Sir, I am new to Jmeter and your Jmeter beginners tutorial was very useful to me. Now i have one issue. Webservices are passed by QA team through SOAP UI, and they pass username , password using WS-Security configurations and PasswordType as Password text. 1. I tried passing this credential info using HTTP header manager as Authorization and value as Basic encoded value (encoded value is Username:Password), threw me "Security credentials are required" as response. 2. I tried passing this credential also through HTTP Authorization manager by providing Username, Password and Mechanism as "BASIC_DIGEST", even for that i got "Security credentials are required" as response. 3. Downloaded plugins manager for WS-Security for SOAP plugin and placed in lib/ext folder. But plugin did not get install because of client`s Internet policy. Need your help to resolve this issue
@RaghavPal4 жыл бұрын
Hi Rithvik, did you try to record the APIs directly from SoapUI into JMeter using Proxy. I will create a video on this next week, Can check online too
@prathameshpawar67292 жыл бұрын
Lovely explained
@RaghavPal2 жыл бұрын
Thanks Prathamesh
@unlimited_automation2 жыл бұрын
Is this API testing or performance testing or both that is done in this video using jmeter?
@RaghavPal2 жыл бұрын
Here, it is shown how we can add REST API in JMeter, after that we can do functional and performance testing both
@rajaniippili2 жыл бұрын
Thank you for providing the video.. It was very helpful to me as I am beginner in Jmeter. could you please share the video of how to record in Jmeter
@RaghavPal2 жыл бұрын
Sure Rajani, can check in the sections here - automationstepbystep.com/
@himanisaxena392 Жыл бұрын
Hi Raghav, I have a POST request whose output is pre-signed url. I have to upload a zip file in the generated pre-signed url via PUT request. Could you please help in creating this scenario.
@RaghavPal Жыл бұрын
Hi Himani, Here's how you can create a JMeter test scenario to upload a zip file using a pre-signed URL generated by a previous POST request: Create a Thread Group and add a HTTP Request sampler to it for the POST request that generates the pre-signed URL. In the HTTP Request sampler, set the HTTP Method to POST and set the appropriate URL and request parameters. Add a Regular Expression Extractor post-processor to the HTTP Request sampler to extract the pre-signed URL from the response. Create another Thread Group and add a HTTP Request sampler to it for the PUT request to upload the zip file. In the HTTP Request sampler, set the HTTP Method to PUT and set the URL to the pre-signed URL extracted in step 3. Under the "Advanced" tab, set the "Send File With Request" option to the path of the zip file to be uploaded. Save the test plan and run the test This should simulate the scenario of generating a pre-signed URL using a POST request and then using the pre-signed URL to upload a zip file via a PUT request Note: Make sure to set appropriate values for headers and request parameters in both POST and PUT requests. Also, make sure to specify the correct path to the zip file in the PUT request
@Naveentejatekkem3 ай бұрын
how to pass path param here it's request param (query param ) is added in parameterization
@RaghavPal3 ай бұрын
I will need to check.. pls give details.. or give timestamp from video
@rohitr479210 ай бұрын
Hi Raghav, Useful content, Simple, no-nonsense presentation. I am curious on how you use multiple Operating Systems in parallel. Do you use some Virtual OS software and if so which one?
@RaghavPal10 ай бұрын
Glad it was helpful Rohit.. yes i use remote desktop
@Defabius04113 жыл бұрын
Hi Raghav I like your videos they are very usefull, i have a question how i can test an API wich receive an image captured by the cellphone. Thanxs a lot for your answer.
@RaghavPal3 жыл бұрын
Hi Fabiola, you can test file upload/ download, you can also check the image properties if you get in the response of api, for any kind of visual testing, it may not work and you will have to add other tools for that, If the image is rendered on some webpage then you can make use of tools like Applitools Galen etc Check this video - kzbin.info/www/bejne/f6XYpX6Ip9ZjgKs
@funnyworld-fw4774Ай бұрын
I have tried it by following you , but it doesn't work properly, every time it returns a list of users instead of a single user.Does make any changes in RESTAPI site? Request and response data is also not present in the site.
@RaghavPalАй бұрын
Looks like the server is not working for this demo site. Can try other demo apis httpbin.org/#/HTTP_Methods jsonplaceholder.typicode.com/
@vasanthkumarm11342 жыл бұрын
Hi, can you please let me know how to do it for a Rest API which requires Authorization, I'm able to generate the bearer token, how to pass this to API inorder to get the response body. If you have any video please share or else please explain!!!Thanks!
@RaghavPal2 жыл бұрын
Hi Vasanth, Sure, I will add more examples, Can also see some online examples
@vivekramteke46704 жыл бұрын
Thanks raghav for the amazing tutorial. Could you please make more videos on API testing using Jmeter which will cover all API testing thing's.
@RaghavPal4 жыл бұрын
Sure Vivek, I will plan
@venkatttc663 жыл бұрын
Thnks ragav. I am very usefull your vedio.. Could you please explain octoperf tool
@RaghavPal3 жыл бұрын
I will plan sessions on Octoperf
@shariefrana3 жыл бұрын
Raghav, Could you please demo on how to call stored procedure and pass input, output params with jdbc request, I tried googling over this and can't find any reasonable answer.
@RaghavPal3 жыл бұрын
Hi Sharief, I will try to do a session
@avinashmohanty46064 жыл бұрын
Can u plz tell me how to load client certificate in jmeter? Just like in postman where we can load the cert file,key file, pfx file and host in settings-certificates- add client certificate
@RaghavPal4 жыл бұрын
Hi Avinash, can check this www.blazemeter.com/blog/how-set-your-jmeter-load-test-use-client-side-certificates/ stackoverflow.com/questions/47674315/jmeter-load-client-side-certificate
@hazimabdoh63032 жыл бұрын
Hi Raghav sir...where can i check the username ''morpheus' is updated after doing put for it ? becuase i search for it in the getuserlist but i didint find it .thanks
@RaghavPal2 жыл бұрын
Hi Hazim, this is a demo api, we do not have access to the backend server, in real world, you can check in your database
@hazimabdoh63032 жыл бұрын
@@RaghavPal thanks for declaration.
@rangaswamy38392 жыл бұрын
Hi raghav this is ranga i know manual and automation testing but am learning post man from your videos is that knowledge enough ? Or else am i need to purchase your udemy course postman?
@RaghavPal2 жыл бұрын
Hi Ranga, Its enough, just try few more examples on your own
@rangaswamy38392 жыл бұрын
@@RaghavPal thank you so much for your reply raghav. comming future i will learn j meter from your channel only.
@s1h2r3452 жыл бұрын
Hi Raghav, Can you please share a video API will All types of Authentications (Basic, Bearer, Digest, OAuth)
@RaghavPal2 жыл бұрын
I will plan Sudheer
@abhishekgowda8999 Жыл бұрын
Sir for failure condition??
@RaghavPal Жыл бұрын
Hi Abhishek, pls send me more details and explanation on what exactly is the issue
@swapnachinuru9143 жыл бұрын
Hi sir,In jmeter Body data is same as parameters for PUT API
@RaghavPal3 жыл бұрын
Hi Swapna, if you are referring to query parameters, then No its different from body data
@hksingh32204 жыл бұрын
Can you please make the video on setUp and tear down thread group.?
@RaghavPal4 жыл бұрын
Sure I will, can also check JMeter tutorials here - automationstepbystep.com/
@techinhindi16194 жыл бұрын
I try some api in jmeter but I didn't got a response code why please this point also
@RaghavPal4 жыл бұрын
Sure, I will check, can you share the url
@amiraliansari98873 жыл бұрын
Hi Raghav, Thanks for the video. I have got one issue. I am using a Rest API and this uses a fixed bearer token(This means that the same bearer token can be used for more than one transaction). In Jmeter how and where can I set this bearer token so that it can be used again and again without changing it?
@RaghavPal3 жыл бұрын
Hi Amir, this can help stackoverflow.com/questions/39557632/how-to-parameterize-bearer-token-authorization-in-jmeter
@SuperThepac4 жыл бұрын
Is there any way to import swagger documentation into Jmeter
@RaghavPal4 жыл бұрын
Not sure, will need to check online
@ragavendrad5743 жыл бұрын
What is loop count? In jmeter... What is need of it?
@RaghavPal3 жыл бұрын
it means how many iterations do you want to run for the test
@ankitds13694 жыл бұрын
Raghav, Amazing work first of all, no one can make it any simpler then this. Question - My Objective is too- load data to a web page (lets say scheduling an appointment - page 1 - name, page 2 -address, page 3 - find available appointment, page 4 -payment, page 5- confirmation). Can this be achieved using JMeter
@RaghavPal4 жыл бұрын
Hi Ankit, thanks for the message, Do you. mean that you want to create bulk data using JMeter, You can do that. I will suggest to also check if you have API's for this too, That will be more simpler and efficient approach
@krishnavdas67772 жыл бұрын
How to fill a form and do a submit using jmeter
@RaghavPal2 жыл бұрын
this can help stackoverflow.com/questions/63885638/how-to-add-form-data-as-jmeter-body
@MayaSaqi4 ай бұрын
Hello Sir, I have tried everything but 'Same user on each iteration' is not understandable, Can you pls explain it what does this flag do, i have tried it using csv file, using clear cache etc
@RaghavPal4 ай бұрын
Maya In JMeter, the option "Same user on each iteration" is a checkbox found in the Thread Group element. It controls how JMeter handles user sessions and cookies across iterations What it means: When this option is: Checked: JMeter will reuse the same user session and cookies for each iteration This means that the same user credentials, cookies, and session data will be used for each iteration of the test Unchecked: JMeter will create a new user session and cookies for each iteration This means that each iteration will start with a fresh user session, and any cookies or session data from previous iterations will be discarded Significance and use: Here are some scenarios where this option is significant: Login and authentication: If your application requires users to log in, and you want to test the login process, you should uncheck "Same user on each iteration" This will simulate a new user login for each iteration, allowing you to test the authentication process Session-based applications: If your application uses session-based authentication or stores user data in session cookies, you should check "Same user on each iteration". This will ensure that the same user session is reused across iterations, simulating a real-user experience Cookie-based applications: If your application uses cookies to store user preferences or data, you should check "Same user on each iteration". This will ensure that the same cookies are reused across iterations, simulating a real-user experience Performance testing: When performing performance testing, you may want to test the application's behavior under different user loads. In this case, unchecking "Same user on each iteration" can help simulate a larger user base, as each iteration will start with a fresh user session Functional testing: When performing functional testing, you may want to test specific user scenarios, such as login, logout, and session expiration. In this case, checking "Same user on each iteration" can help simulate a real-user experience, while unchecking it can help test specific scenarios -
@shaarviupasanadivineworship4 жыл бұрын
How to use colorful text editor?
@RaghavPal4 жыл бұрын
Hi Upasana, do you mean inside JMeter?
@shaarviupasanadivineworship4 жыл бұрын
@@RaghavPal yes
@shaarviupasanadivineworship4 жыл бұрын
🤓🤓 could you please let us know
@LuisEzequielDeLuca3 жыл бұрын
Hello this is awesome, can you put a video for making calls to aws api gw using signature v4. Thanks
@RaghavPal3 жыл бұрын
I will check and plan on this Luis
@orophilesandy7915 Жыл бұрын
This is Api automation in Jmeter na?
@RaghavPal Жыл бұрын
Yes
@benaf27782 жыл бұрын
Hi, I did not understand what ist different between API Testing(web app) and Rest API Testing in JMeter. in another wort, i will Understand how can i make a REST API Testing exactly on JMeter. you Attach the Rest API in Video-Comment , but i did not find the explanation
@RaghavPal2 жыл бұрын
Hi, You can check the API Web services basics playlist here - automationstepbystep.com/
@bhamra123singh22 жыл бұрын
I feel one should teach only when he/she knows how to use and to show everyone the actual use case not just by saying but by practical too
@RaghavPal2 жыл бұрын
will take this feedback
@vivekshah34582 жыл бұрын
Hi Ragav, How we can increase the HPS(Hit Per Seconds) in JMeter? I am doing load testing through JMeter but HPS is little bit low so could you please share the tips if you have. Thanks Vivek
@RaghavPal2 жыл бұрын
Hi Vivek, this you can configure in the Thread Group, check this - stackoverflow.com/questions/5018846/testing-with-jmeter-how-to-run-n-requests-per-second
@bhamra123singh22 жыл бұрын
Have seen more than 50 videos including urs too everyone has the same dialogue that we can use Authorization config but here it's demo so we don't require to use it...no one dares to show how to use config elements all are just showing a simple demo which one can learn by reading manual by jmeter just sucked up