3 minutes readWhy would I want to investigate the traffic that is made from a native iOS application ? There are several reasons for which you would like to be able to see which are the requests a native application is making to the server side: – to debug an issue that is happening in the application… Read more »
Posts By: admin
How to use Apache JMeter’s WebDriver Sampler to Load Test the UI of an Application
3 minutes readHere is how to use Apache JMeter’s WebDriver Sampler to load test the UI of the application, and by the UI, I mean load test a user’s workflow, with entering the web pages, clicking on different links etc. All you have to do is install the JMeter plugins and make use of the WebDriver Config… Read more »
How to Save Apache JMeter Results to a CSV file or XML file?
2 minutes readHere are details on how to save or export the results of your Apache JMeter test script to a CSV or XML file. Setup 1. Open Apache JMeter (here is how to start Apache JMeter on Mac) and right click Test Plan and Add -> Threads (Users) -> Thread Group 2. Right click Thread Group… Read more »
How to Open a New Tab using Selenium WebDriver with Java?
2 minutes readIf you want to open a new tab in the browser with Selenium WebDriver and Java, below we’ve listed some working examples. Have in mind that at the moment, Selenium WebDriver has no build-in ability to open new tabs or new windows, and because of this we have to force the browser to open the… Read more »
How to Send an Android Application to Background and Reopen It
2 minutes readNavigating the Android application state transitions is a vital skill for testers and developers alike. It’s particularly essential when you’re tasked with ensuring that your app gracefully handles users who momentarily switch to another app and then return. This scenario mirrors a typical user behavior: opening the app, sending it to the background by clicking… Read more »
How to use Explicit and Implicit Waits in Selenium WebDriver with Java
2 minutes readNavigating the dynamic nature of web applications can be challenging without the right tools. Selenium WebDriver shines in automated testing by interacting with web elements that might not be immediately available due to page loads or AJAX requests. Understanding and implementing waits in Selenium WebDriver is crucial for robust test scripts, ensuring elements are ready… Read more »
How to find by XPath text that contains apostrophe (single quote) in Selenium WebDriver
2 minutes readNavigating XPath expressions in Selenium WebDriver can sometimes feel like trying to decipher an ancient script. Especially when your text contains apostrophes, it might seem like hitting a dead end. Fear not, for there’s a straightforward strategy to handle these pesky characters, ensuring your automated tests are both effective and resilient. Let’s dive into the… Read more »