Understand Keyword Driven Framework by using UFT – (Part 1) – User friendly Tech help

Framework is to automation as beauty is to Nature. Amazing thing about our mother nature is that it brings happiness and rejuvenates our energy level, similarly framework makes our automation task more manageable and brings elegance in coding.Today we would be focusing on the fundamental architecture of the framework. We would be beginning with Keyword driven framework and…

How to create executable JAR for TestNG class using intellij and gradle? – User friendly Tech help

Problem:- How to create a executable JAR for testng class using intellij + gradle.nnTool stack :– Intellij (IDE) + Gradle (Build tool) + TestNg (Testing framework)nn Share more learn more  Fb, G+,Twitter  n GITHUB for complete code n Step1:– Create a basic java class to display “HelloBuild!”, execution using TestNG.n n public class TestBuild { @Test public…

How to optimize the performance of ng-repeat in AngularJS? – User friendly Tech help

Today we would focus on improving the performance of Angular JS code by learning the basics of ng-repeat and then how to enhance its capabilities.nnFollow us for more learning Fb,G+,Twitter.nnng-repeat :- nIt is directive which create instant of template for each item in the collection. It is identical to looping concept in any language say Java, for…

API testing interview Questions-1 ? – User friendly Tech help

n nDo follow us for more updates on  Fb,G+,Twitter.nnBasic API Testing interview questions:–nn1.What is the meaning of HTTP protocol?nn2.What are the range of methods available in HTTP? n 3.What is the difference between PUT and POST method?nn4.What are the different  HTTP status codes?nn5.Why we use 5XX error code?nn6.How we can filter the Head of the response?nn7.What…

Robot Framework- Working with Excel Library(Part-2) – User friendly Tech help

Life is short..share while you still have knowledge.nWe started with installation of Excel Library in Robot Framework , today we would focus on utilizing the keywords present in the Excel Library.nNext is publishing run results into ExcelnnWe can connect on Fb,G+,Twitter to spread more learning.nnScenario:- How we can fetch data from Excel in Robot framework to parameter our test cases.nnSolution:-…

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…

How to compare values in Custom Metadata with given object in Apex – User friendly Tech help

Problem- Admin wants some value as configurable and set in custom metadata, now as a developer, we want to perform an action based on the matching of this mdt with values in say platform field on the account object n public Boolean validatePlatform() {n System.debug(‘Inside validatePlatform’);n List lstOfPlatforms = new List(); n Boolean isValidPlatform =…