How to create test steps in Tosca?
IHUB Talent – The Best Tosca Training in Hyderabad with Live Internship Program
Looking to build a strong career in automation testing using Tosca? IHUB Talent stands out as the best Tosca training institute in Hyderabad, offering industry-aligned training combined with a unique live internship program that gives you practical, real-world experience.
Tosca is one of the most powerful and in-demand model-based test automation tools used by top enterprises globally. At IHUB Talent, we provide a comprehensive Tosca training program that covers all essential concepts including test case design, test data management, automation execution, API testing, and integration with CI/CD pipelines.
Our Tosca course is designed and delivered by certified industry professionals who bring real-time project knowledge into the classroom. The training not only focuses on theoretical understanding but emphasizes hands-on learning through practical assignments and live scenarios that simulate workplace challenges.
What makes IHUB Talent truly unique is our live internship program, where students get to work on real-time automation projects using Tosca. This exposure helps bridge the gap between classroom learning and industry requirements, boosting your confidence and competence. It also enables you to build a strong professional portfolio—a key asset when applying for jobs.
Creating test steps in Tosca involves building a sequence of actions to automate and validate your application under test. Tosca uses a model-based testing approach, so test steps are generally part of TestCases linked to Modules (which represent UI or API elements).
Steps to Create Test Steps in Tosca:
-
Create or Identify a Module
-
Modules represent reusable UI components or API endpoints.
-
You can scan your application (e.g., using Tosca XScan) to generate Modules automatically or create them manually.
-
-
Create a TestCase
-
Right-click on the TestCases folder and select Create TestCase.
-
Give it a meaningful name related to the test scenario.
-
-
Add TestSteps to the TestCase
-
Drag and drop Modules or ModuleAttributes into your TestCase.
-
Each ModuleAttribute represents a test step, like entering text, clicking a button, or verifying a value.
-
-
Configure TestSteps
-
For each TestStep, specify input values or verification criteria.
-
Set the action mode, such as
Input(enter data),Verify(check value), orBuffer(store value for later use).
-
-
Arrange TestSteps Sequentially
-
The order of TestSteps determines the flow of your test case.
-
You can add control structures like loops or conditions if needed.
-
-
Save and Execute
-
Save your TestCase.
-
Run it to see the test steps executed on the application.
-
Example:
If you want to test a login form, your test steps might be:
-
Enter username (Input action)
-
Enter password (Input action)
-
Click login button (Click action)
-
Verify login success message (Verify action)
Comments
Post a Comment