Hire QA – Specialized in QA Recruitment, Technical Interviews and Testing Solutions

Archives: FAQs

What is heap memory?

The Java heap is the area of memory used to store objects instantiated by applications running on the JVM. Objects in the heap can be shared between threads. Many users restrict the Java heap size to 2-8 GB in order to minimize garbage collection pauses. Heap memory should not be greater than physical memory on …

What is heap memory? Read More »

What is Java Garbage Collection?

Java applications obtain objects in memory as needed. It is the task of garbage collection (GC) in the Java virtual machine (JVM) to automatically determine what memory is no longer being used by a Java application and to recycle this memory for other uses. Java garbage collection is the process by which Java programs perform …

What is Java Garbage Collection? Read More »

Result Status Action Handler

Result Status Action Handler allows the user to stop the thread or whole test according to sampler result.Here it defines the action to be taken after a sampler error. Continue: This option ignores the error and continues the test. Start next thread loop: It does not execute the test for current iteration when it found …

Result Status Action Handler Read More »

CSS/jQuery Extractor in JMeter

CSS Selectors are patterns to select elements with the following syntax:.class#id* All elementsdiv, p all div and p elementsdiv p all p elements inside div elements JQuery Selectors can just do the same as CSS Selectors, but with a different syntax:$(“*”) All elements$(“#id”)$(“.class”)$(“.class,.class”) — $(“.intro, .demo”) – all class elements with the class intro or …

CSS/jQuery Extractor in JMeter Read More »

What is the difference between User Parameter, User Defined Variable and CSV Data Set Config?

User Parameter is a preprocessor whereas CSV Data Set Config and User Defined Variables are Config Elements.In User Defined Variables, there is only one value of the variable can be defined whereas, in User Parameters and CSV Data Set Config, multiple values can be defined for a variable.Test Data cannot be added via an external …

What is the difference between User Parameter, User Defined Variable and CSV Data Set Config? Read More »

Keystore Configuration in JMeter

Keystore configuration element in JMeter helps to configure the Client’s side certificate. Some systems require a Client-side certificate which helps the server to know exactly who is connecting. Before adding a Keystore Configuration element, you must set up a Java Key Store with the client certificates that you want to test. Follow the below steps: …

Keystore Configuration in JMeter Read More »