- Getting started
- Administration
- RPA workflow projects
- Creating an RPA workflow from an idea
- Creating a project
- How to start an RPA workflow
- Managing project files and folders
- Connecting RPA workflows to your accounts
- Configuring activities
- Managing the activities in a project
- Passing values between activities
- Iterating through items
- Managing the data in a project
- Configuring a project to use your data
- Using file and folder resources
- Using UI Automation for browser interactions
- App projects
- Tests
- About tests
- Creating tests
- Designing tests
- Managing and running tests

Studio Web for Automation Suite User Guide
After your Tests project is available in Studio Web, you can begin designing your test cases by adding activities to a test case from that project. These activities help you simulate user actions, validate expected results, and build robust, automated test logic.
Designing test cases in Tests projects resembles designing workflows in RPA workflow projects. For detailed information on managing project files, configuring activities, or handling other project resources, refer to the [Designing RPA workflow projects] chapter.
This page walks you through creating a basic test case using the Testing Activities package in Studio Web.
To create a simple test case in Studio Web, follow these steps:
- In Studio Web, navigate to your previously created Tests
project.
Alternatively, open a Tests project from Test Manager by going to the test case's Automation tab and selecting Open in Studio Web.
- In the Explorer panel, select the test case created when you linked from Test Manager (or choose any other test case in the project).
- Add activities to the test case:
Studio Web supports a wide range of activities across multiple categories, including from the Testing Activities package.
- Select Add activity in the Designer panel.
- Use the search bar to find and add the Assign Variable Value
activity.
- Create a string variable named
userEmailand input it in the To Variable field. - In the Set Value field, enter an email address, such as: "johndoe@exmaple.com".
- Create a string variable named
- Add a Log Message
activity and enter a message such as:
"Validating email address: " + userEmail. - To verify the value, add
a Verify Expression activity, and use the following expression:
userEmail = "johndoe@example.com". - Add a final Log message activity to indicate the test case has completed.