testgrinder
Go to testgrinder
  • Overview
  • testgrinder uses
    • Testing
      • User Acceptance Testing
      • Change Testing
      • Regression Testing
      • Performance Testing
      • Stress Testing
    • Data management
      • Data verification
    • Configuration management
    • Training videos development
  • Getting Started
    • Video: Get Started with testgrinder
    • First steps
    • Example Scripts
    • Writing your first scenario
    • Scenarios
    • Run reports
  • Writing Scenarios
    • Anatomy of Maximo UI
      • Maximo login page
      • Start Center
      • Application Screen
      • Value lists
      • Advanced Search
      • Targeting fields with no labels
    • Finding the right steps
    • Step autocompletion
    • Scenarios vs Scenario Outlines
    • Snippets and Templates
      • testgrinder Templates Project
      • testgrinder Snippets Project
  • Examples
    • Interacting with electronic signature dialog
    • Automated granting of application access
    • Add a job plan
    • Add an item
    • Add an item to storeroom
  • Administration
    • Accessing Maximo behind a firewall
    • Managing User Access
    • Using Git to Back Up and Version Control testgrinder Projects
  • Self Managed Private Cloud (SMPC)
    • testgrinder SaaS vs testgrinder SMPC
    • Releases
      • Version 1.0.8
      • Version 1.0.0
    • testgrinder Architecture
    • testgrinder Configuration
      • Configuration Files
      • Database Stored Settings
    • Deployment Instructions
      • Prerequisites
      • Subscribing to testgrinder on AWS Marketplace
      • Virtual Private Cloud
      • Security Groups
      • S3 Buckets
      • IAM Roles
      • Key Pair
      • Launch tg-app
      • Finalize Configuration File .env
      • Finalizing Database Stored Settings
      • Minimal Deployment Complete
      • Install SSL Certificate
      • Force HTTP to HTTPS
      • External Database
      • Configure Auto Scaling Group
        • Target Groups
        • Load Balancers
        • Launch Template
        • Auto Scaling Group
        • Finalize Auto Scale Group Deployment
    • Test the Deployment
    • Monitoring
    • Backup and Restore Database
Powered by GitBook
On this page
  • testgrinder service will be discontinued on January 31, 2025
  • training run report with step hiding

Was this helpful?

  1. testgrinder uses

Training videos development

testgrinder service will be discontinued on January 31, 2025

Since testgrinder can record a video of each of the scenarios it executes, you may use it as a tool to develop training videos. We provide several steps that help you annotate your videos by projecting onscreen messages that get recorded in the video.

Here's an example of a scenario using onscreen messages:

Scenario: How to create an asset and activate it

 	Given I display the following onscreen message in the middle of the screen:
 	      """
 	      How to create a new asset and activate it
 	      """
 	  And I wait for the onscreen message to disappear
 	  And I login to Maximo as User

 	 Then I display the following onscreen message at the bottom of the screen:
 	      """
 	      Navigate to the Assets application
 	      """
    And I go to the Assets / Assets application
 	  And I wait for the onscreen message to disappear

   Then I display the following onscreen message at the bottom of the screen:
 	      """
 	      Click the New Asset toolbar button to create the asset.
 	      Enter its description.
 	      Save the asset.
 	      """
 	  And I click the 'New Asset' toolbar button
    And I enter 'Test Asset' in the description field of the Asset field
    And I successfully save the record
 	  And I wait for the onscreen message to disappear
    
   Then I display the following onscreen message at the bottom of the screen:
 	      """
 	      Choose Change Status action.
 	      Select New Status: Active.
 	      Click the OK button.
 	      """
    And I select action 'Change Status'
    And I select Active in the dropdown list for the 'New Status' field
    And I click the OK button
 	  And I wait for the onscreen message to disappear
    
   Then I display the following onscreen message at the bottom of the screen:
 	      """
 	      Confirm the status is ACTIVE
 	      """
   Then I see the value ACTIVE in the Status field
 	  And I wait for the onscreen message to disappear

    And I logout

Run it to generate the video. Then you can either download the video and host it yourself, or share the run in testgrinder, which will provide you with a link to it. While sharing, you may choose to hide the steps on the shared run report, which will also cause testgrinder to start video playback when a visitor comes through the link:

Here's the link to the run, this is what people you share the link with will see:

PreviousConfiguration managementNextVideo: Get Started with testgrinder

Last updated 1 year ago

Was this helpful?

training run report with step hiding
sharing of a run report