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

Was this helpful?

  1. Writing Scenarios
  2. Anatomy of Maximo UI

Value lists

PreviousApplication ScreenNextAdvanced Search

Last updated 1 year ago

Was this helpful?

testgrinder service will be discontinued on January 31, 2025

The snippets below give you an example of how to select an entry from a list. For example, on a new work order you need to choose the work type CM, but if you simply enter CM into the Work Type field, Maximo will indicate that the entry is ambiguous as CM partially matches other work types. One way of avoiding the ambiguity is to click on the magnifying glass icon next to the Work Type filed, then filter the list in the pop up down to the CM entry and click the remaining entry to choose it. This snippet shows how to do it:

Then I activate the detail menu for the 'Work Type' field
 And I enter '=CM' in the 'Type' filter in the unlabelled table
 And I initiate search in the unlabelled table
 And I choose the first row in the unlabelled table
 And I see the value 'CM' in the 'Work Type' field

Using '=' in front of the value tells Maximo that we want to do an exact search.

A similar approach can be used for selecting values for fields that show an intermediate menu when clicking its magnifying glass icon. For example, selecting a location for a work order can be done like this:

Then I activate the detail menu for the 'Location' field
 And I click menu item 'Select Value'
 And I enter '=BOILER' in the 'Location' filter in the unlabelled table
 And I initiate search in the unlabelled table
 And I choose the first row in the unlabelled table
 And I see the value 'BOILER' in the 'Location' field

These two snippets will help you enter values into many Maximo fields for which there is the option to select from a list.