3 minutes read Ever wondered how to make your Selenium WebDriver tests more versatile and mimic real-world user interactions more closely? Well, routing your traffic through a proxy might just be the trick you need. Whether you’re testing from a coffee shop or your cozy home office, using a proxy with Selenium WebDriver can give you insights and… Read more »
Posts Categorized: Tools
What is HTTP POST Request?
< 1 minute read HTTP POST request is used for sending data to a server. You can use POST requests for upload a file or submitting a web form, make sure that the receiving application agrees on the format. Additional headers are sent with the POST request: Content-Type: header which is usually application/x-www-form-urlencoded and the Content-Length: header gives the… Read more »
Run JMeter Distributed Test in the Cloud
3 minutes read Hey folks! Let’s talk about cranking up your performance testing game with Apache JMeter, but not just any old way—we’re taking it to the cloud. Distributed testing with JMeter in the cloud is like assembling a team of superheroes from across the globe to test your app’s performance under real-world conditions. Intrigued? Let’s dive in…. Read more »
Measuring Latency for Different Regions of the World
2 minutes read During the development of your web application you will encounter the need of finding out the latency times for different regions of the world. Why should I care about this? Imagine that a user is able to access your application from Europe in under 100 ms, but doing the same action from Asia it will have… Read more »
How to Locate Web Elements with Selenium WebDriver?
4 minutes read Hey there! If you’re dabbling in the art of UI testing with Selenium WebDriver, you’re probably aware that the first step to automation nirvana is getting a solid grip on locating web elements. It’s like being a digital detective, but instead of solving mysteries, you’re identifying the bits and pieces of a webpage to interact… Read more »
What is the max number of concurrent users a JMeter can handle?
2 minutes read Wondering about the upper limits of load testing with Apache JMeter on your system? You’re not alone. This question is crucial for planning and executing effective performance tests to ensure your application can handle the expected user traffic. The Upper Limit: Threads and Hardware The number of concurrent users (threads) you can simulate with JMeter… Read more »
Introduction to Apache JMeter Performance Testing
5 minutes read Apache JMeter is an open source load and performance tool written in Java and it’s available on almost any OS. This is an intro post about Apache JMeter tool and I’m trying to point out how it can help you in your daily Quality Engineer job. You can use Apache JMeter for performance, load, stress… Read more »