- Introdução
- Administração
- Projetos de fluxo de trabalho de RPA
- Como criar um fluxo de trabalho de RPA a partir de uma ideia
- Criação de um projeto
- Como iniciar um fluxo de trabalho de RPA
- Gerenciamento de arquivos e pastas do projeto
- Conectar fluxos de trabalho de RPA às suas contas
- Configuração de atividades
- Gerenciamento de atividades em um projeto
- Como transmitir valores entre atividades
- Como iterar por itens
- Como gerenciar os dados em um projeto
- Configuração de um projeto para usar seus dados
- Como usar recursos de arquivos e pastas
- Uso do UI Automation para interações do navegador
- Projeto do aplicativo
- Apps no Studio Web
- Atividades do aplicativo
- Testes
- Sobre testes
- Criação de testes
- Criação de testes
- Gerenciamento e execução de testes

Guia do usuário do Studio Web para Automation Suite
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.