My application uses, Angular 9, and in that, the typescript is used for UI, and it is converted on run time And thee issue is that the page is taking time to load So for that, I have checked the queries by optimizing them, still, the issue is same So need to check UI loading time, so how can we test that.
how to test the loading of UI, in case it is written in Typescript, using Jmeter
450 Views Asked by Everest At
1
There are 1 best solutions below
Related Questions in PERFORMANCE
- Upsert huge amount of data by EFCore.BulkExtensions
- How can I resolve this error and work smoothly in deep learning?
- Efficiently processing many small elements of a collection concurrently in Java
- Theme Preloader for speed optimization in WordPress
- I need help to understand the time wich my simple ''hello world'' is taking to execute
- Non-blocking state update
- Do conditional checks cause bottlenecks in Javascript?
- Performance of sketch drastically decreases outside of the P5 Web Editor
- sample query for review for improvement on big query
- Is there an indexing strategy in Postgres which will operate effectively for JOINs with ORs
- Performance difference between two JavaScript code snippets for comparing arrays of strings
- C++ : Is there an objective universal way to compare the speed of iterative algorithms?
- How to configure api http request with load testing
- the difference in terms of performance two types of update in opensearch
- Sveltekit : really long to send the first page and intense CPU computation
Related Questions in JMETER
- i have extracted some values using regex in beanshell postprocessor now i have to pick a random value and store it into a varaible?
- Jmeter Java DSL - getting issues when using rpsThreadGroup
- How to configure api http request with load testing
- Jmeter resolution variable with remote
- Need to read different line from different files using CSV read function in JMeter
- How to enter user input in jmeter console (without doing parameterization)
- Optimal way to replace different parts of a structured string(XML) with random string values of different lengths in a JMeter JSR223 Samper (groovy)
- Jmeter query about script recording
- In Jmeter, for ISO8583 Sampler, how can I read the data from CSV file?
- Use JMeter to simulate receiving websocket broadcasts similar to okhttp3
- is their any industry standard for performing 300K load test (Thermostat->HVAC system)?
- How to perform multiple HTTP requests with unique IP addresses from my local
- Jmeter => How to add a jmx file in the transaction controller
- How to send huge JSON with PDF encoded over HTTPS in JMeter?
- How can I create a random(seed) function using a custom seed for Jmeter?
Related Questions in QUERY-OPTIMIZATION
- mysql query takes too long because of wrong indexes usage
- plan_handle is always different for each query in SQL Server Cache
- Is there an indexing strategy in Postgres which will operate effectively for JOINs with ORs
- IS NULL performance issue in MySQL
- How to optimize query which has or in left join clause?
- Not equal vs IN in AWS Redshift
- Optimize MySQL query perform ORDER BY before JOIN
- SQL Query to fetch final data for hierarchal configuration tables in a single query
- getting mysql deadlock because this query is taking to long
- Substring search optimization in mysql
- what happen when a materialized is too large in postgres
- Improve insert when normalizing database in PostgreSQL
- How can I make the MySQL table searching executed faster?
- MongoDB - Update a field based on another field within the same doc in the array
- Swiss Scheduling System for Ping-Pong league
Related Questions in PROFILER
- what are the numbers in the operation names when profiling an application
- Unable to capture iterations on dlprof
- Linux perf does not record function in libstdc++.so correctly
- Where can I track subscribed events in unity?
- Intel Vtune hotspot can not see source code (only assembly code )
- How to use visual studio performance profiler ? after clicking start the application is running but not the profiler
- When profiling using torch.autograd.profiler, the run time changes every time I added profiler.record_function to different plac
- How to interpret Firefox profiler result evaluation for non-JS code?
- Is there a way to parse data generated by perf tool?
- Error while connecting to Snapdragon Profiler
- Too much memory used when using WebCamTexture in unity
- Intellij Profiler - read/copy/save value
- Memory leak in fragments : activity in ActivityThread$ActivityClientRecord
- How to construct a similar test program based on the behavior of a given program?
- How to Setup Netbeans Profiler for Payara server deployed in remote windows host?
Related Questions in UI-TESTING
- How to repair corrupted/obsolote Genymotion emulator via shell
- Compose composeTestRule.onRoot(useUnmergedTree = true).printToLog() hides composables
- How do I make an xpath with a variable for a selenide test
- Android how to test canvas UI jetpack compose
- Test a large wizard flow / enquiry form with specflow
- Selenium go to other page without accessing initial page
- Jetpack Compose - screenshot test fails with NoClassDefFoundError after captureToImage()
- Is it possible to dor UI test of a desktop application using appium and python language?
- Android Espresso Not able to test login
- Is it possible to get combined test coverage of android Unitesting and UI testing coverage | not repeated question
- Cypress checking line-through
- Finding elements using Ranorex spy is inconsistent
- Log all failed attempts in testcafe quarantine mode?
- Xamarin UI test - Can't tap button
- how to select a custome dropdown option in Playwright UI test
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You cannot test UI loading time using JMeter itself, as per JMeter project main page:
So if you need to test the performance of page rendering it's better to consider specialized solutions like Lighthouse.
If your test framework is built around JMeter and you need to add client-side performance testing to your test suite you can consider using WebDriver Sampler which provides JMeter integration with Selenium browser automation framework.