Similar Posts
Apex – User friendly Tech help
CONTROL YOUR EMOTIONS TO EMPOWER YOUR BRAIN Problem:-Clients api was having redirect policy on the server but its not handled by Vlocity integration procedure(IP), thus its failing with 307 response code Solution:- Error:- 307 Temporary Redirect Inside IP create “Remote Action” to refer the Apex class and apex method, which handles the redirect 307 error….
How to check that javascript object contains the given key? – User friendly Tech help
A wet man does not fear the rain. n Issue:-How do I check if an object has a key in JavaScript? n Example:- n // Sample Objectnconst REMINDER = “REMIND_ME”;nreminderObj= {nINBOX:`${REMINDER}_INBOX`,nUSERS:`${REMINDER}_USERS`,nGROUPS:`${REMINDER}_GROUPS`,n} n Object.prototype.hasOwnProperty.call(reminderObj,”INBOX”); nNote:- We could directly use hasOwnProperty but to avoid eslint errors we have used the longer syntax as above.n const reminderLocation =…
Manual testing v/s Automation component testing – User friendly Tech help
I came across a video on Testing Maturity Model in “Tip of the Week” program by HP’s engineers and product experts. n This video features Andrew Flick, Senior Product Manager at HP Software. Andrew talks about saving execution time , framework and test maintenance costs while increasing test coverage. n nnHope we as UFT automation…
JS – User friendly Tech help
Scenario:- Legacy code thrown at you with new UX design, and you cannot touch the original code. So doing latest UI changes is headache. Solution:- Play with the structure of the html and add latest flexbox or grid CSS to make your life hell easier. How i did re-structuring was appending new parent div, which…
Using JS to add div elements dynamically – User friendly Tech help
Scenario:- Legacy code thrown at you with new UX design, and you cannot touch the original code. So doing latest UI changes is headache. n Solution:- Play with the structure of the html and add latest flexbox or grid CSS to make your life hell easier. n How i did re-structuring was appending new parent…
Vlocity Omniscript reverts back to initial step on reloading? – User friendly Tech help
Problem- As per the current version of OS, when the user refreshes the current page (step in OS terms), it takes user back to the initial step, without saving the changes. n n To avoid the above problem statement, that when a user accidentally or knowingly tries to refresh the browser page for OS, its…