Similar Posts
salesforce – Page 3 – User friendly Tech help
Lets learn how to create Salesforce project in visual studio code editor Install sfdx-cli on your pc by typing command in terminal > npm install -g sfdx-cli Verify installation is complete > sfdx -version Install the Salesforce Extension Pack, inside vscode > extensions > Salesforce Extension Pack Create sfdx project in vscode press cmd+shift+p inside…
Setup for Robot Framework Automation – User friendly Tech help
World changes constantly..nWe change each day..nOnce U find itself U have to begin again.nnToday we are changing and learning Robot Framework and thought of sharing the same with others co-learners, please add your expertise as comments to this post. We have already shared our posts on established automation tools like UFT and Selenium.nnDo follow us…
CSS Selectors – User friendly Tech help
What is CSS ? nCSS (Cascading Style Sheets) is a language that controls the look and feel of html elements in browser. nnLayman example:- Going to beauty salon for hair cut is applying CSS on our face (which is equivalent to HTML). nnn nWhat is the meaning of CSS selector? nSelectors are used to apply CSS styles on html…
Meaning of Web Service and Its Key components in SOAP-UI – User friendly Tech help
Scenario :- Understanding concept of Web services, its working and what is a SOAP, UDDI , XML , UDDI . How we can implement SOAP-UI .nnn n n n n n Web Service (Request-Response) n n n nnnSolution :- This video tutorial is created which covers all the basic information of web service and its…
How Facebook tests Facebook? – User friendly Tech help
Thought of sharing a video “How facebook test facebook on Android“, this is taken from GTAC-2013(The Google Test Automation Conference (GTAC) is an annual test automation conference hosted by Google. It brings together engineers from industry and academia to discuss advances in test automation and the test engineering computer science field)nnn n nnHope you will…
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 =…