Similar Posts
Practical issues and solutions for working with JMeter – Part2 – User friendly Tech help
n n n n n n n n More Scenarios n Scenario:- nHow to display results from Beanshell sampler to response?nnSolution :- nnSimple code example:- nnString display=”HelloWorld”;n//Taking results and displaying in responsenSampleResult.setResponseData( display);nnSampleResult.setDataType( org.apache.jmeter.samplers.SampleResult.TEXT );nnnScenario:- Not able to understand the error message thrown by jmeter in beanshell sampler or beanshell assertions? n Solution :- nnUse try-catch n try{ int…
Verify Regex in Robot Framework?
Problem:- How to verify given regular expression using Robot Framework Solution:- A pessimist sees the difficulty in every opportunity; an optimist sees the opportunity in every difficulty 1.Create a regular expression using online tool Example:- we want to verify 34.4% we will create a regular expression first 2.Use Should Match Regex keyword Example 1 :-…
Exit Statements in UFT – User friendly Tech help
Let us discuss various Exit statements which are quite useful in automation testing Using UFT.These statements are part of Vbscripting(Latest version) and when implanted in the code provides better control on the flow of execution of automated Tests. n It is also used in Error handling as and when some exception occurs we can use…
Image-based object identification in UFT(Insight Recording) – User friendly Tech help
This is my first video on UFT, hope all the automation lovers gain something into the practical aspect of new feature (Image based identification ). n Please share your feedback or suggestions on [email protected] friends voice quality is not as good, i need to improve on my recorder thing .nnnJust a Brief summary of topics…
Expand and collapse single Lightning web component Accordion
Problem: We need an account accordion that can be expanded and collapsed by the user. By default, it should be launched in a collapsed state. Solution: A custom solution was designed by playing with the properties of the current LWC accordion. The key was to use the “allow-multiple-sections-open” property and set the active section “active-section-name”…
Sending Keyboard strokes in UFT 11.5 – User friendly Tech help
Scenario:-nHow we can perform events like Click down Arrow Enter, Tab Using UFT?nnApproach:-nWe need to use “SendKeys” method of “Wscript”nnDefinition:-nSendkeys, is used to send one or more keystrokes to the active window as if they were typed at the keyboardnnSyntax:-nObject.Sendkeys KeystrokesnnExample:-nHow to activate windows Key /Startup Program?nnNote:-Shortcut for Windows Key in Windows 7 is “CTRL+ESC“.nnCode:-n n…