Blogs
-
A Developer’s Perspective on Quality Assurance
Tricentis initially introduced Testim, formerly named Testim, in 2014 with the aim of enabling effortless creation of automated tests for anyone. During that period, Selenium reigned supreme, and the existence of tools aiding developers in test automation (such as Cypress, Puppeteer, and Playwright) was akin to science fiction. The beginning In the beginning, Testim’s primary…
-
An Efficient And Rapid Method To Invoke Batch Apex in Salesforce
Collaborating within Salesforce’s shared environment often leads developers to encounter challenges such as SOQL limits, timeouts, and callout sequencing, causing frustration. How can one effectively execute extensive, intricate tasks on the cloud platform without concerns about timeouts or exceeding limits? Batch Apex comes to the rescue for executing these substantial jobs. This article delves into…
-
Comparing Object Types in Apex
At some stage, every developer will require verifying whether a generic SObject corresponds to a specific concrete SObject type. This scenario commonly arises when inspecting the owner of a custom object or the who.id and what.id of objects containing polymorphic keys like Task. Developers might consider using the Apex instanceof keyword for this verification. However,…