Similar Posts
How to use visual studio code for Salesforce? – User friendly Tech help
n Lets learn how to create Salesforce project in visual studio code editor n n n Install sfdx-cli on your pc by typing command in terminal > npm install -g sfdx-cli n Verify installation is complete > sfdx -version n Install the Salesforce Extension Pack, inside vscode > extensions > Salesforce Extension Pack n Create…
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…
Difference between VB and VBScripting? – User friendly Tech help
Scenario:– Please explain the difference between VB and VB-Scripting language. n nSolution:– n n n n Visual Basic n n n VBScript n n n n n Uses different types of variables and constants n n n Uses only one type of variable–the Variant n n n n n Can be compiled into an exe…
User friendly Tech help – Page 2 – Helping ppl learn
How to compare values in Custom Metadata with a given object field in Apex learn more share more 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…
Fix lint errors in Angular cli – User friendly Tech help
The mind, once stretched by a new idea, never regains its original dimensions. n Problem:- In Angular cli after executing the command ng lint shows a lot of lint errors based on the configuration `tslint.json`, how to fix lint errors ? n n Solution:- n Run the below command n tslint –fix src/**/*.ts -t verbose n Note:–…
How to Select random value from a DropDownList using Selenium or UFT – User friendly Tech help
Requirement:- We need to select random value from a given dropdownlist, to test the functionality how our AUT would behave under varying selection of options. n n n n n n DropDownlist + HTML code n n n nApproach:-n1.We would take the count of existing options in the weblist/dropdownlist .n2.Take a random value between 0(starting…