Reputation: 37
All the performance testing tools I found do not use actual browsers for UI testing. Some of them will get the html of the webpage from the server and will parse it and we can verify the elements on them.
What I want is to find the time it takes to render the web pages and elements in actual browsers when multiple users are logged into the application. Any suggestions?
Upvotes: 1
Views: 926
Reputation: 301
If you are up to a little programming, you can use PhantomJS or similar headless browser engines. This URL has some interesting names, links and projects.
If screenshots are useful, then a simple google search gives a lot of results. I saw an excellent Google Tech Talk on a project call dpxdt. (This is just in case someone wants to explore the screenshot angle)
Upvotes: 0
Reputation: 168237
The absolute majority of web tools act on HTTP protocol level and not kicking off the real browsers because:
If you're still looking for a load testing tool which uses real browsers instead of background threads executing HTTP requests I can think of 2:
however it shouldn't be a problem to add support of browser automation framework like Selenium to any load testing tool which can "understand" a programming language
Upvotes: 3