```yaml testdriver/remember.yaml highlight={5-7, 17, 18}
version: 6.0.0
steps:
  - prompt: focus chrome, remember the password, enter the username and the remembered password and login
    commands:
      - command: remember
        description: the password
        output: my_password
      - command: hover-text
        text: Username
        description: username input field
        action: click
      - command: type
        text: standard_user
      - command: press-keys
        keys:
          - tab
      - command: type
        text: ${OUTPUT.my_password}
      - command: press-keys
        keys:
          - tab
      - command: press-keys
        keys:
          - enter
      - command: assert
        expect: the homepage is visible
```
