Questions tagged [performance-testing]

Unlocking the Potential: Unleashing the Power of Software Performance Testing. By examining real-life user patterns, performance testing enables businesses to identify and overcome any limitations that may hinder a software product's optimal performance.

Tips for retrieving Latency and Rendering time with Webdriver sampler in Jmeter

Can anyone assist me with extracting the latency and rendering time values of a web application using Webdriver sampler in jmeter? If possible, please provide some sample webdriver sampler codes to retrieve these values. Anticipated outcomes: 1) Obtain ...

JMETER and Selenium WebDriver are experiencing issues with executing multiple threads efficiently

Currently, I am attempting to execute a test for 5 - 10 users using WebDriver Sampler within JMeter. I have successfully configured Chrome Driver and included the necessary WebDriver Sampler code. Interestingly, when running the test for only 1 user, every ...

Integrating a Content Delivery Network (CDN) with express

Recently, I delved into using ExpressJS for developing an app. To enable access to the public folder, I added the line app.use(express.static(__dirname + '/public'));. However, due to my use of a CDN, I need assistance in directing it to the specific publ ...

Having difficulty making changes to a Selenium Webdriver script in Jmeter

Currently facing an issue with Jmeter. Our configuration involves WDS invoking the URL, passing credentials to thread groups, and then threads to the database. However, I now need to edit the WDS script for the new sprint release. The problem arises as I a ...

Discover the effective approach for executing JMeter to effortlessly display the absent elements

I have two separate GET APIs that return response codes containing an ID number and a corresponding title. For API_1, here are some sample responses (with 100 IDs): { "result": "OK", "obj": { "list" : [ { "id" : 9 ...

Tips for conducting Performance Testing using Selenium

I have been trying out new things lately, specifically focusing on selenium for the past 4 months. Can selenium be used for performance testing? If so, how can it be done? I would appreciate any information provided. ...

Guide to monitor and analyze end-to-end performance for enhancing the client experience

My current challenge involves finding the most effective way to monitor and analyze end-to-end performance trends between software releases. When I refer to "end to end," I am focusing on the complete experience for users accessing an application through a ...

To successfully extract the transaction name, request name, iteration number, and user names utilizing the Selenium WebDriver sampler within JMeter, is a key priority

I am trying to retrieve the names of requests and transactions from my results. My goal is to display the transaction name, request name, iteration count, and the user number passed in my code using the Selenium Webdriver Sampler. Can you please share some ...

Create a standard regular expression in JMeter's regex extractor feature

I encountered a code snippet in my HTML response that looks like this: 003cdiv idu003d"d1f15ddf10691ed7%2?604?-1form From this snippet, I managed to extract the ID value which is d1f15ddf10691ed7%2?604?-1 using the following regular expression 003 ...

Transforming the JSON body request from Postman into a Jmeter body request

const today = new Date(); const time = today.getTime(); pm.environment.set('time', time); let eventArray = []; for(let i = 1; i <= 50; i++) { let t = time + (i * 1000); eventArray.push({ "eid": i, "time": t }); } const data = ...

Testing the performance of artillery on Graph QL endpoints using a YML file without the ability to view debug logs or identify issues post-execution

Currently, I am utilizing the artillery node JS tool for performance testing using yml-based scenarios. All necessary plugin libraries have been successfully installed and I can execute artillery tests without an issue. However, I am encountering a problem ...

Encountering an issue while performing Python Selenium testing on the login and logout features

Encountering an error message... Error: AttributeError: 'LoginTestCase' object has no attribute 'driver' Here is the code snippet: from selenium import webdriver; from selenium.webdriver.common.keys import Keys import time import unittest class LoginTes ...

What methods can be used to evaluate the efficiency of AngularJS in terms of DOM rendering?

Currently working on improving an AngularJS project and looking for ways to identify areas of improvement, such as memory leaks, browser performance, data rendering issues, and screen freezes. I attempted using Jmeter but it only shows page navigation spee ...

When attempting to pass a value using the JSON Extractor feature in JMeter, I found that only the default value was successfully passed

My issue with passing the correct value from the JSON Extractor to the next call in my JMeter script may stem from an expression problem. https://i.stack.imgur.com/fFuw7.jpg https://i.stack.imgur.com/JlG6q.jpg This is how the Response JSON appears: {"u ...