Useful tips for everyday
How do you make a li tag active? Try $(‘ul’).on(‘click’, ‘a’, function () { $(‘.active’).removeClass(‘active’); $(this).closest(‘a’).addClass(‘active’); return false; }); Check Demo – Tushar Oct 12…
How do I set a default download app? How do I change my default download program? On the Start menu, select Settings > Apps >…
What is queue Testing? If there is a merging, acquiring, or connecting node (several incoming links), then we will have to test the queue at…
How can I import data from Salesforce to SQL Server? Click Data Management and select Data Loader. You need to download an appropriate version of…
What is instead of DML trigger? INSTEAD OF triggers cause their source DML operation to skip and they just execute the code provided inside them.…
How to get the value of an input field? Input Text value Property Change the value of a text field: getElementById(“myText”). Get the value of…
How to call Salesforce REST API? In the top menu, select utilities | REST Explorer . You can make REST API calls from the REST…
What is a database savepoint? A savepoint is a way of implementing subtransactions (also known as nested transactions) within a relational database management system by…
What is REST API automation testing? REST API Testing Tutorial using REST Assured It is widely used to test JSON and XML based web applications.…
How do I check if a number field is empty in Salesforce? There are a few options to validate empty text fields in Apex: Use…