Similar Posts
lwc – User friendly Tech help
import { LightningElement, track } from ‘lwc’; export default class HelloLWC extends LightningElement { //default values @track typedValue = ”; salutationOptions = [ {‘label’: ‘None’, ‘value’: ‘None’}, {‘label’: ‘Mr.’, ‘value’: ‘Mr.’}, {‘label’: ‘Ms.’, ‘value’: ‘Ms.’}, {‘label’: ‘Mrs.’, ‘value’: ‘Mrs.’}, {‘label’: ‘Dr.’, ‘value’: ‘Dr.’}, {‘label’: ‘Prof.’, ‘value’: ‘Prof.’}, ]; //method on click of button handleClick(){ const…
Working with database in JMeter – User friendly Tech help
Scenario:- Creating a database test plan, such that we can do the performance testing for CRUD operations.nnSolution:-nKey Points:- n1. JDBC connector files(jdbc jar).n2. Database connection details, so we can communication with database.n3. JDBC request, this is important to set the database connection details in jmeternnStep1:- Download the required connector file and place in lib folder of…
Hybrid Framework in Automation (Part-1) – User friendly Tech help
We started our journey to grasp the concept of framework in automation using keyworddriven approach, today we are going to shape our existing code into a more versatile form known as Hybrid framework.nnNote:- Please read our post on Keyword Driven framework before starting with Hybrid concept.nnFollow us on Facebook for more updates and learning!!! n…
Introduction to Selenium? – User friendly Tech help
Today we are focusing on the background check of Selenium.nnWhat is Selenium?nnSelenium automates browsers.Selenium is an Open Source(Freely Available)and combination of software tools which is used in automation testing of web applications across different browsers and platforms.nnSelenium is a set of multifarious software tools each with a different approach to supporting test automation.nThe name Selenium…
SQL Interview Questions(Set-2) – User friendly Tech help
1. Where clause cannot be used with aggregate functions (like sum, max, min, count) so we need to implement having clause. n Example for a Table A we need to count the applications where count is greater than 5, so we cannot create a query like select count (applications) from table A where count (app)…
Best Practices:- Working with Robot Framework – User friendly Tech help
It is never too late to become smarter or better…Never stop learning.n We started with installation of Robot framework, followed with first test case and further implementing the same in RIDE.Today we would focus on some of the best practices while working with Robot Framework(RF). n Always remember if you are bored, it means that you are doing it wrong….