admin管理员组

文章数量:1310475

I have to do UI Testing for one of my application. I have tried JMeter ui scripting using webdriver plugin but execution fails at even 5 users as multiple browser get invoked and we are unable to achieve expected hits.

Am new to Truclient protocol in LoadRunner. The same application is made available over the internet. When am trying to login manually the application works. Recording with Jmeter, LR WEB(http/html) works.

Note: whenever i hit the application url it defaults to login page(usual behavior)

Issue: When am on chromium/truclient browser inside develop script it loads the blank page when we hit the url. When stopped recording and replayed am able to view the traffic within that page.

Am unable to record the script using truclient protocol using loadrunner for my application.

Am unsure if its related to any proxy/certificate or related to a config/setting change in truclient.

Any help on this is appreciated as developing a UI test and executing with multiple users is better with lr when compared to JMeter.

I have to do UI Testing for one of my application. I have tried JMeter ui scripting using webdriver plugin but execution fails at even 5 users as multiple browser get invoked and we are unable to achieve expected hits.

Am new to Truclient protocol in LoadRunner. The same application is made available over the internet. When am trying to login manually the application works. Recording with Jmeter, LR WEB(http/html) works.

Note: whenever i hit the application url it defaults to login page(usual behavior)

Issue: When am on chromium/truclient browser inside develop script it loads the blank page when we hit the url. When stopped recording and replayed am able to view the traffic within that page.

Am unable to record the script using truclient protocol using loadrunner for my application.

Am unsure if its related to any proxy/certificate or related to a config/setting change in truclient.

Any help on this is appreciated as developing a UI test and executing with multiple users is better with lr when compared to JMeter.

Share Improve this question asked Feb 3 at 12:05 Farhan MeerFarhan Meer 11 bronze badge 2
  • Can you please clarify why you must engage in UI based testing for this application? if the goal us to measure the performance through the UI, then under multi user load is really too late to be effective. You need to be measuring this during unit and functional testing using log values and APM/RUM solutions passively during tests. AXIOM: What is not fast enough for one will never be faster for many – James Pulley Commented Feb 3 at 22:12
  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Bot Commented Feb 4 at 2:19
Add a comment  | 

1 Answer 1

Reset to default 0

Both WebDriver Sampler and TruClient protocol will kick off the real browser under the hood. Even in headless mode the browser will consume at least 1 CPU core and couple of gigabytes of RAM.

So you need to have proper hardware in order to conduct the test using real browsers. JMeter can be run in distributed mode

However be informed that using WebDriver for performance testing is not recommended by its developers

Performance testing using Selenium and WebDriver is generally not advised. Not because it is incapable, but because it is not optimised for the job and you are unlikely to get good results.

So I would rather recommend going for JMeter's HTTP Request samplers instead. Given you properly configure JMeter to behave like a real browser it will produce the same network footprint as the real user using the real browser so you will be able to conduct the load using much less resources

本文标签: jmeterTruclient recording login pageStack Overflow