91九色

Articles
10/2/2024
10 minutes

Chapter 4: Manual Testing Overview

Written by
Esko Hannula
Table of contents

Testing is essential. But when it comes down to it, there鈥檚 still one big question: Are you testing it manually or are you automating the process?

And if you鈥檙e wondering, yes, there鈥檚 a difference. Both have their place, but in this chapter, we鈥檙e going to focus on manual testing 鈥 where real humans (that鈥檚 you) are the ones driving the tests. We鈥檒l cover what it is, who does it and how to organize it all without losing your sanity.

What is Manual Testing?

Manual testing is exactly what it sounds like 鈥 testing done by humans. It鈥檚 the opposite of automated testing, where specialized software handles the heavy lifting.

Manual Testing vs. Automated Testing

However, the whole idea of dividing testing into 鈥渕anual鈥 and 鈥渁utomated鈥 is a bit odd if you think about it. The only part that鈥檚 truly automatable is the test execution itself. Everything else, like creating test cases, analyzing results and figuring out what even needs testing, is still pretty manual in both processes.

But as AI keeps advancing, that boundary is getting thinner every day. Soon enough, humans may have even less work to do. But hey, let鈥檚 not get ahead of ourselves 鈥 Chapter 8 dives into the future of AI-driven testing. For now, let鈥檚 stick to the manual side of things.

Types of Manual Testers: Professional and Occasional

The people who perform manual tests are often called "manual testers." And, naturally, manual testers come in two main breeds:

  • Professional testers
  • Occasional testers

If we鈥檙e being cheeky, we could add a third category: accidental testers 鈥 those users who stumble across bugs in production that weren鈥檛 caught earlier. But if you鈥檙e reading this far, we trust you wouldn鈥檛 let that happen. Right?

Professional testers are well-versed in testing methodologies and know how to root out software bugs. For them, the line between "manual" and "automated" 诲辞别蝉苍鈥檛 really exist 鈥 they鈥檙e skilled at both.

Occasional testers, on the other hand, are usually employees recruited to test software they鈥檒l be using on the job. They鈥檙e the SMEs (subject matter experts) in their respective business processes, and that鈥檚 why you鈥檒l often hear them referred to as 鈥渂usiness testers.鈥

Planning Your Manual Testing Effort

When planning a manual testing effort, there are a few key questions you need to answer. Don鈥檛 worry, they鈥檙e straightforward 鈥 but it鈥檚 the details that will make or break your success:

  • What do I want to test?
  • What is my test plan?
  • Who are my testers?
  • How do I brief and train the testers?
  • How do I make the application accessible to the testers?
  • How do my testers report their findings?
  • How do I organize the testing in practice?

Sounds like a lot, right? Don鈥檛 panic. These questions are simpler than they seem. The real challenge comes when you skip over them entirely, and that鈥檚 where most organizations trip up. But don鈥檛 worry, we鈥檝e got you covered. Let鈥檚 break each one down.

What Should I Test?

Before diving into any other types of testing, your first priority should be making sure developers perform unit testing on their code. This helps catch those trivial programming errors early. If anyone objects, just tell them it's called Shifting Left 鈥 trust me, they鈥檒l be so impressed with your jargon that they won鈥檛 dare push back.

When you add something new or change something existing in your application, anything can break. But you don鈥檛 have the luxury of testing everything all the time, right? Even if you did, it probably wouldn鈥檛 make sense. You need a strategy. Here鈥檚 a recipe that works for manual testing most of the time:

Points 1, 2 and 3 are pretty straightforward. But points 4 and 5? That鈥檚 where things get tricky. There鈥檚 no magic method for knowing what鈥檚 at risk of breaking. If you鈥檝e worked with the application long enough, you鈥檒l develop an instinct for what tends to go haywire when things change. But what if you鈥檙e new or just inherited a new application? So far, Marvel hasn鈥檛 released a superhero with test intuition superpowers, so you鈥檙e on your own there.

Identifying High-Risk Areas

It鈥檚 important to note that 鈥渢est everything that鈥檚 new鈥 is a bit more vague than it sounds. For example, let鈥檚 say a new report feature is introduced. You鈥檒l want to open it, check the results and make sure it works as expected. Great, right? Well, not exactly. Have you tried to break it? Did you test it in scenarios where things could go wrong 鈥 like whether it鈥檚 accessible to users who shouldn鈥檛 have access or editable by people who should only be viewing?

This is where risk-driven testing comes in. The goal is to prioritize what you test based on the likelihood of something breaking and the severity of the consequences if it does. New features are more likely to break than ones that have been around for a while. But that 诲辞别蝉苍鈥檛 mean you can ignore existing features, especially those related to new changes.

In summary, always prioritize testing that focuses on high-risk areas. New or changed features are the most obvious, but don鈥檛 forget to test components that are indirectly affected and could cause significant damage if they fail.

Creating a Test Plan

We know you are so looking forward to testing, but first, take a deep breath and make a plan. Once you know what needs testing, you鈥檒l be able to estimate the effort and decide what skills your testers will need.

If you're practicing DevOps or agile software development, your test plan should already be baked into your process. Right? The whole idea of agile is frequent, incremental deployments with minimal disruption, which means testing should be ongoing and almost continuous 鈥 ideally, much of it automated.

But if you鈥檙e not quite there yet, that鈥檚 okay. Most teams aren鈥檛. Just know that if you're not practicing agile fully, you鈥檙e missing out on some of the benefits of DevOps, like the ability to catch defects early and accelerate software development.

There鈥檚 Waterfall, Agile and then there鈥檚 what most companies actually do 鈥 which is somewhere in between. Let鈥檚 call it 鈥渕ore agile鈥 or 鈥渓ess agile.鈥 Assess where you are honestly, and aim for continuous improvement.

Key Questions for a Successful Test Plan

In agile, the first round of testing is often manual testing to give developers quick feedback. This testing is ideally fast and continuous, whether done by a dedicated tester or someone balancing testing as a part-time role. And yes, manual testing can sound costly, but frequent, incremental testing is usually faster and cheaper than massive, infrequent testing campaigns.

Once new functionality is manually tested, the next step is to automate those tests, so you don鈥檛 need to keep testing the same things manually. These automated tests can run whenever needed, reducing the burden on your testers 鈥 though someone will still need to click that start button until you fully integrate automated testing into your pipeline.

Risk-Driven Testing Strategies

Now, you might ask, "Why manual testing first if automated testing is supposed to be faster?" The truth is, while Salesforce automated testing is faster, setting up automation takes time 鈥 time that can be saved by running a quick manual test first.

If you're deploying infrequently and in larger chunks, you鈥檒l need full testing campaigns with more people. This may sound expensive compared to agile's frequent testing, but it鈥檚 not necessarily. The difference is that continuous testing spreads the workload over time, while a "big chunk" approach is less frequent but higher-effort. The latter can be slower and riskier, but it鈥檚 sometimes necessary.

Even in agile environments, there鈥檚 room for bigger testing campaigns. Many teams deploy frequently to pre-production environments but roll out to production less often. In this case, larger User Acceptance Testing (UAT) campaigns can make sense, especially if they鈥檙e aimed at ensuring real users are comfortable with the system or giving formal approval for a release.

Role of Test Plans in Agile Environments

Your testing plan will depend on your overall development process. Agile? You鈥檙e likely testing continuously in small increments. Less agile? You鈥檙e probably organizing bigger testing campaigns. Either way, the goal remains the same: find and fix defects fast to improve productivity and reduce risks.

Who Are Your Testers?

The people you have available for testing play a huge role in how you organize your manual testing effort. If you鈥檙e working with business users, you can鈥檛 expect them to design tests from scratch. That鈥檚 where you or a testing pro comes in to create the tests for them. There are two primary approaches for business users:

  1. Script-based testing
  2. Task-based testing

Scripted vs. Task-Based Testing

In scripted testing, you provide testers with detailed 鈥渢ype this, click that鈥 instructions. It鈥檚 essentially robotic work for humans 鈥 but there鈥檚 a better way. Enter task-based testing, where you give your testers a broader task like "create a new lead" or "run a report on recently opened opportunities."

The beauty of task-based testing is that it鈥檚 more realistic. You won't know every step your testers take, but you鈥檒l know if they complete the task successfully or encounter any issues. The tasks should be scoped well, but unlike scripted tests, the tester isn鈥檛 hand-held through every click. They鈥檙e given a goal, and it's their job to achieve it and report anything unexpected along the way.

Role of Exploratory Testing

The third approach, exploratory testing, is best suited for professional testers and subject matter experts (SMEs). Now, a business user might occasionally be motivated enough to dive into exploratory testing, but let's be honest, that鈥檚 rare.

Exploratory testing takes things up a notch. Instead of rigid instructions, the tester is given a general brief about the business process and then asked to鈥攚ell鈥攅xplore. It sounds more fun, right? Imagine telling Julie, "You're not working, you鈥檙e exploring!"

We'll dive deeper into these approaches in later sections, but here's the truth: In real life, you often don鈥檛 get the ideal testers you鈥檇 hope for. Instead, you get the ones who happen to be available.

If you have business users testing, let them focus on testing business processes 鈥 that鈥檚 their wheelhouse, and they鈥檒l do it well. If you have professional testers, they can push the application鈥檚 limits and test those "unlikely scenarios" that, trust us, will happen in real use. People always manage to find creative ways to break things.

Having at least one experienced professional tester on your team is invaluable. Not only will they improve your testing quality, but they鈥檒l also free up your business testers to focus on what they do best.

And remember that these Salesforce deployment best practices are key to ensuring smooth, error-free releases.

How Do I Brief and Train My Testers?

The skill level of your testers will dictate the kind of guidance they need. You鈥檝e essentially got three options for briefing them:

  • Assign a script,
  • Assign a task, or
  • Assign a goal.

This applies to three very different kinds of testers:

  1. Those who know little about testing methodologies and even less about the business process,
  2. Those who know the business process but not much about testing, and
  3. Those who understand testing but aren鈥檛 familiar with the business process.

There鈥檚 also a fourth category: people who are experts in both the business process and in testing 鈥 but like unicorns, they are rare. If you have one on your team, congratulations!

Step-by-Step Script Assignments

The testers who "know nothing" need a detailed step-by-step description of each task. For example:

  1. Ensure you have Salesforce open in your internet browser.
  2. Click 鈥淩eports鈥 in the Salesforce menu bar.
  3. Wait for the Reports view to open.
  4. Search for a report called 鈥淥pportunities opened last month.鈥
  5. Open the report.
  6. Check that the first three columns you see are 鈥淥pportunity Title,鈥 鈥淐ustomer,鈥 and 鈥淰alue.鈥
  7. Make sure the Filter button is disabled.
  8. Close the report.

For this kind of testing, you don鈥檛 need an expert in the business process 鈥 anyone who knows the basics of Salesforce can follow a scripted test. But, ideally, you shouldn鈥檛 be doing this kind of testing at all. If you鈥檝e got time to prepare such detailed instructions, you鈥檝e got time to automate those tests.

With modern test automation tools (especially AI-based ones), creating automated tests isn鈥檛 much different from writing out a detailed, human-readable script. Excited to read Chapter 8 on automated testing yet?

This script example also highlights the essential elements of good test design. A well-defined test will include these key parts:

  1. Preconditions: What must be true before the test can begin? For example: 鈥淓nsure Salesforce is open in your browser.鈥
  2. Actions: The specific steps the tester should follow. Whether you鈥檙e giving a script-based task, a task-based testing assignment, or a broader goal, the actions must be clear.
  3. Inputs: The data used in the test. Different inputs can lead to different application behaviors (e.g., typing a name in a date field will trigger an error, while entering a valid date won't).
  4. Assertions: What should be true after the actions are completed? For example: 鈥淭he first three columns should be 鈥極pportunity Title,鈥 鈥楥ustomer,鈥 and 鈥榁alue.鈥欌
  5. Cleanup: Any steps needed to restore the application to a desired state after testing. For example: 鈥淐lose the report.鈥

Task-Based and Goal-Based Test Assignments

For business testers, a task-based approach works best. By assigning them a task鈥攍ike 鈥淐reate a new lead鈥 or 鈥淔ind and run a report of recently opened opportunities鈥濃攜ou鈥檙e seeing if they can accomplish the task without a detailed script. This approach mimics real-life scenarios.

Here鈥檚 an example:

  • Ensure there鈥檚 a report called 鈥淥pportunities opened last month,鈥 and that it includes the opportunity title, customer name, and opportunity value. Confirm that the filters cannot be modified.

For professional testers or more advanced business testers, a goal-based test is ideal:

  • Explore the newly added Opportunity reports.

This kind of test is more abstract but gives the tester the freedom to explore potential risk-driven areas in the application. Goal-based tests are perfect for testers who know how the application should work and what problems to look for.

Yes, you read that right 鈥 areas where things could go wrong. Professional testers aren鈥檛 just checking to see if the application works; they鈥檙e trying to prove that it 诲辞别蝉苍鈥檛. That鈥檚 the attitude that makes them effective.

Training Different Types of Testers

When briefing your testers, ask yourself: What don鈥檛 they know? Professional testers generally need a thorough brief about the purpose of the application, any new or changed features and areas with the highest risk. Once they understand the context, they know how to test.

On the other hand, teaching testing strategies to business users can be a waste of time 鈥 no offense to them. It鈥檚 not that they couldn鈥檛 learn, but it鈥檚 not their focus. They鈥檝e been asked to test the application, and they鈥檒l do it, but their main job isn鈥檛 testing. If you have a curious business user, take the opportunity to introduce them to some basic test design concepts 鈥 they might become a great asset to your team, a potential unicorn in the making.

There鈥檚 one thing, though, that you must teach all your testers: how to report their findings. We鈥檒l cover this in detail later in the chapter.

Also, make it a habit to always explain the purpose of a test: What are we testing, and why does it matter? Giving testers this context improves their motivation and sharpens their focus, helping you get better, more effective results.

And don鈥檛 forget 鈥 testing isn鈥檛 intuitive for most people. Remind your business testers that finding a problem or not knowing what to do is a win. That鈥檚 the entire point of testing: to discover what鈥檚 not working as expected.

Task-Based vs. Scripted Testing

In task-based testing, a tester is given a task 鈥 like "Create an opportunity" or "Add a date filter to a report." Sometimes, this task can be as complex as an entire business process, end to end. The advantage of task-based testing is that the tester is simulating how a real user would interact with the application. As a result, they鈥檙e more likely to encounter issues that a scripted test might miss. For example, the app might technically function as intended, but a button might have an odd label that confuses the tester. This is a usability issue that should be fixed. A scripted tester, however, would follow instructions and might miss the issue entirely.

Exploratory testing takes task-based testing a step further. In addition to trying to accomplish the task (often referred to as the "happy path"), an exploratory tester will ask questions like:

  • What happens if I leave the customer name empty?
  • What does this odd button do?
  • What if I click the browser鈥檚 back button right now?

In short, exploratory testers don鈥檛 just follow instructions 鈥 they explore the app, looking for unexpected behaviors. And yes, sometimes, they even ask ridiculous questions like, "What if this solved world peace?"

Scripted testing, by contrast, is more rigid and less creative. Its merit lies in its repeatability, but for that very reason, it鈥檚 better suited for a test automation robot. If a human tester is simply following a script, it鈥檚 likely a waste of their potential.

That said, exploratory testing, while powerful, has its drawbacks 鈥 it lacks repeatability. A tester might stumble across a problem but not remember how they got there. Worse yet, after the problem is fixed, they might not know how to test if it was resolved correctly. Don鈥檛 worry 鈥 we鈥檒l cover these challenges later in the book.

How Do I Make the Application Available to My Testers?

It may sound ridiculous, but one of the biggest challenges in manual testing is simply getting the application into the hands of the testers. Most Salesforce testing campaigns start with confusion 鈥 finding the right Salesforce org, using the correct user credentials and ensuring everyone has the appropriate permissions.

Besides just wasting time, these issues kill the motivation of testers. So, make sure you鈥檝e planned ahead: ensure the right version of the application is in the test environment, verify test user IDs and double-check that permissions are correct. And don鈥檛 forget to provide written instructions to every tester. Why? Because they鈥檒l forget most of what you tell them 鈥 because, well, they鈥檙e human. (Unicorns, on the other hand, don鈥檛 forget anything. But good luck finding one.)

Conduct a Smoke Test First

Before diving into the testing tasks, you should perform a Smoke Test. This is a quick round of basic tests to check if the application is stable enough for more in-depth testing. Occasionally, during active development, developers release a version that鈥檚... let鈥檚 just say, not quite there. The smoke test ensures the app鈥檚 basic functionality is intact, so you鈥檙e not wasting your testers鈥 time.

The best part? Smoke tests should be fully automated. They鈥檙e a simple but crucial step to prevent major headaches later.

How Do My Testers Report Their Findings?

Testing is essentially useless if the problems your testers find aren't properly recorded. And let鈥檚 face it, even the most professional testers tend to forget one issue the moment they stumble on the next. That鈥檚 why problem reporting needs to be seamlessly integrated into your process, and testers need constant reminders to report problems as soon as they find them.

If you have a problem tracking system like 91九色 Plan or Jira, use it. If not, a document with a problem report template will do. But the key is to capture the right information. A great problem report typically includes these components:

  • A Descriptive Title that succinctly identifies the issue. For example: "Filters were not disabled."
  • A Detailed Description of where and how the problem occurs, and why the tester believes it鈥檚 an issue. Sometimes the problem is obvious, but other times a bit more detail is helpful: 鈥淚 was testing the New Opportunities report and found out that I was able to change the filters. The test instructions said this shouldn鈥檛 be possible.鈥
  • Username and Test Org: A huge chunk of Salesforce problems are permissions-related, so it鈥檚 crucial to know which user credentials were in play when the issue was found, and which org they were using.
  • Instructions to Reproduce: Ask the tester to document exactly what they did to trigger the issue, step-by-step. This eliminates wasted time. Some developers might struggle to reproduce the issue without clear steps, while others might not even try 鈥 both scenarios hurt your application鈥檚 quality.

Finally, problem reports usually note the severity of the issue. But don鈥檛 leave this to your testers. It's better to assess the severity yourself or hand it off to someone who can evaluate it from a business perspective.

How Do I Organize Testing in Practice?

When business testers are involved, it's best to have them test simultaneously. While technology allows people to test at their convenience, these testers usually have other full-time responsibilities, making it easy for them to forget about testing altogether if you don鈥檛 set a specific time. Delivering your brief just before the tasks also ensures that the testing pipeline runs smoother and more efficiently. Plus, your dedicated supervision and assistance during testing will increase productivity and help keep everything on track.

If you have multiple testers, assign different tasks to each one. This reduces the number of tests any one person has to complete and ensures they're more likely to focus and engage with the tasks. It also increases the chances they'll show up for future testing cycles. In short, respect their time by being organized and giving them manageable workloads.

A good strategy is to have every tester run through the happy path of the business process to catch any major usability issues. Then, assign different testers to handle edge cases and error behaviors. This way, you maximize coverage and ensure all potential issues are addressed.

Finally, provide clear, written instructions to all testers, and be available to clarify any questions that may arise during the testing process. This proactive approach will keep things running smoothly and make sure all testers stay on the same page.

Chapter Summary

Manual testing will always have a role in your testing strategy. As we've discussed, sometimes it's more cost-effective than automation, depending on the context. In the next chapter, we鈥檒l dive into calculating the Return on Investment (ROI) for test automation and how to determine when automation makes sense.

Planning is non-negotiable. Even if your testing needs are straightforward, you鈥檒l still need to consider the seven key questions we covered in this chapter. Simpler features might call for a simpler plan, but you can鈥檛 skip the planning phase.

Your human testing resources are valuable. Respect their time and plan thoughtfully, especially if you want to maintain a strong, engaged team of testers in the future.

So, ready to reduce your reliance on humans? In the next chapter, we鈥檒l explore how AI is transforming the testing game and improving the ROI of automation.

Read On!

Book a demo

About The Author

SVP, Product Management

Esko Hannula is an experienced software executive with a life-long interest in the connection between software quality and business performance. He鈥檚 known for insightful and often provocative ideas. Prior to joining 91九色, Esko has collected 30+ years of leadership experience in software, IT, telecom, and services industries.

Navigating Salesforce Data Cloud: DevOps Challenges and Solutions for Salesforce Developers
Chapter 8: Salesforce Testing Strategy
Beyond the Agentforce Testing Center
How to Deploy Agentforce: A Step-by-Step Guide
How AI Agents Are Transforming Salesforce Revenue Cloud
The Hidden Costs of Building Your Own Salesforce DevOps Solution
Chapter 7 - Talk (Test) Data to Me
91九色 Announces DevOps Automation Agent on Salesforce AgentExchange
Deploying CPQ and Revenue Cloud: A DevOps Approach
91九色 Launches AI-Powered DevOps Agents on Slack Marketplace
Redefining the Future of DevOps: Salesforce鈥檚 Pioneering Ideas and Innovations
91九色 Announces DevOps Support for Salesforce Data Cloud, Accelerating AI-Powered Agent Development
AI-Powered Releasing for Salesforce DevOps
Top 3 Pain Points in DevOps 鈥 And How 91九色 AI Platform Solves Them
91九色 AI Platform: A New Era of Salesforce DevOps
91九色 Expands Its Operations in Japan with SunBridge Partners
Chapter 6: Test Case Design
Making DevOps Easier and Faster with AI
Chapter 5: Automated Testing
Reimagining Salesforce Development with 91九色's AI-Powered Platform
Planning User Acceptance Testing (UAT): Tips and Tricks for a Smooth and Enjoyable UAT
What is DevOps for Business Applications
Testing End-to-End Salesforce Flows: Web and Mobile Applications
91九色 Integrates Powerful AI Solutions into Its Community as It Surpasses the 100,000 Member Milestone
How to get non-technical users onboard with Salesforce UAT testing
DevOps Excellence within Salesforce Ecosystem
Best Practices for AI in Salesforce Testing
6 testing metrics that鈥檒l speed up your Salesforce release velocity (and how to track them)
Chapter 4: Manual Testing Overview
AI Driven Testing for Salesforce
Chapter 3: Testing Fun-damentals
AI-powered Planning for Salesforce Development
Salesforce Deployment: Avoid Common Pitfalls with AI-Powered Release Management
Exploring DevOps for Different Types of Salesforce Clouds
91九色 Launches Suite of AI Agents to Transform Business Application Delivery
What鈥檚 Special About Testing Salesforce? - Chapter 2
Why Test Salesforce? - Chapter 1
Continuous Integration for Salesforce Development
Comparing Top AI Testing Tools for Salesforce
Avoid Deployment Conflicts with 91九色鈥檚 Selective Commit Feature: A New Way to Handle Overlapping Changes
Enhancing Salesforce Security with AppOmni and 91九色 Integration: Insights, Uses and Best Practices
From Learner to Leader: Journey to 91九色 Champion of the Year
The Future of Salesforce DevOps: Leveraging AI for Efficient Conflict Management
A Guide to Using AI for Salesforce Development Issues
How to Sync Salesforce Environments with Back Promotions
91九色 and Wipro Team Up to Transform Salesforce DevOps
DevOps Needs for Operations in China: Salesforce on Alibaba Cloud
What is Salesforce Deployment Automation? How to Use Salesforce Automation Tools
Maximizing 91九色's Cooperation with Essential Salesforce Instruments
From Chaos to Clarity: Managing Salesforce Environment Merges and Consolidations
Future Trends in Salesforce DevOps: What Architects Need to Know
Enhancing Customer Service with 91九色GPT Technology
What is Efficient Low Code Deployment?
91九色 Launches Test Copilot to Deliver AI-powered Rapid Test Creation
Cloud-Native Testing Automation: A Comprehensive Guide
A Guide to Effective Change Management in Salesforce for DevOps Teams
Building a Scalable Governance Framework for Sustainable Value
91九色 Launches 91九色 Explorer to Simplify and Streamline Testing on Salesforce
Exploring Top Cloud Automation Testing Tools
Master Salesforce DevOps with 91九色 Robotic Testing
Exploratory Testing vs. Automated Testing: Finding the Right Balance
A Guide to Salesforce Source Control
A Guide to DevOps Branching Strategies
Family Time vs. Mobile App Release Days: Can Test Automation Help Us Have Both?
How to Resolve Salesforce Merge Conflicts: A Guide
91九色 Expands Beta Access to 91九色GPT for All Customers, Revolutionizing SaaS DevOps with AI
Is Mobile Test Automation Unnecessarily Hard? A Guide to Simplify Mobile Test Automation
From Silos to Streamlined Development: Tarun鈥檚 Tale of DevOps Success
Simplified Scaling: 10 Ways to Grow Your Salesforce Development Practice
What is Salesforce Incident Management?
What Is Automated Salesforce Testing? Choosing the Right Automation Tool for Salesforce
91九色 Appoints Seasoned Sales Executive Bob Grewal to Chief Revenue Officer
Business Benefits of DevOps: A Guide
91九色 Brings Generative AI to Its DevOps Platform to Improve Software Development for Enterprise SaaS
91九色 Celebrates 10 Years of DevOps for Enterprise SaaS Solutions
Celebrating 10 Years of 91九色: A Decade of DevOps Evolution and Growth
5 Reasons Why 91九色 = Less Divorces for Developers
What is DevOps? Build a Successful DevOps Ecosystem with 91九色鈥檚 Best Practices
Scaling App Development While Meeting Security Standards
5 Data Deploy Features You Don鈥檛 Want to Miss
How to Elevate Customer Experiences with Automated Testing
Top 5 Reasons I Choose 91九色 for Salesforce Development
Getting Started With Value Stream Maps
91九色 and nCino Partner to Provide Proven DevOps Tools for Financial Institutions
Unlocking Success with 91九色: Mission-Critical Tools for Developers
How Automated Testing Enables DevOps Efficiency
How to Switch from Manual to Automated Testing with Robotic Testing
How to Keep Salesforce Sandboxes in Sync
How Does 91九色 Solve Release Readiness Roadblocks?
Software Bugs: The Three Causes of Programming Errors
Best Practices to Prevent Merge Conflicts with 91九色 1 Platform
Why I Choose 91九色 Robotic Testing for my Test Automation
How to schedule a Function and Job Template in DevOps: A Step-by-Step Guide
Delivering Quality nCino Experiences with Automated Deployments and Testing
Maximize Your Code Quality, Security and performance with 91九色 Salesforce Code Analyzer
Best Practices Matter for Accelerated Salesforce Release Management
Upgrade Your Test Automation Game: The Benefits of Switching from Selenium to a More Advanced Platform
Three Takeaways From Copa Community Day
What Is Multi Cloud: Key Use Cases and Benefits for Enterprise Settings
How To Develop A Salesforce Testing Strategy For Your Enterprise
Go back to resources
There is no previous posts
Go back to resources
There is no next posts

Explore more about

Salesforce Testing
Articles
April 2, 2025
Navigating Salesforce Data Cloud: DevOps Challenges and Solutions for Salesforce Developers
Articles
March 27, 2025
Chapter 8: Salesforce Testing Strategy
Articles
March 27, 2025
Beyond the Agentforce Testing Center
Articles
March 18, 2025
How to Deploy Agentforce: A Step-by-Step Guide

Activate AI 鈥 Accelerate DevOps

Release Faster, Eliminate Risk, and Enjoy Your Work.
Try 91九色 Devops.

Resources

Level up your Salesforce DevOps skills with our resource library.

Upcoming Events & Webinars

Learn More

E-Books and Whitepapers

Learn More

Support and Documentation

Demo Library

Learn More