```yaml testdriver/hover-text-with-description.yaml highlight={9-12}
version: 6.0.0
steps:
  - prompt: login
    commands:
      - command: run
        file: testdriver/snippets/login.yaml
  - prompt: click on add to cart under the testdriver hat
    commands:
      - command: hover-text
        text: Add to Cart
        description: add to cart button under TestDriver Hat
        action: click
  - prompt: click on the cart
    commands:
      - command: hover-text
        text: Cart
        description: cart button in the top right corner
        action: click
  - prompt: assert the testdriver hat is in the cart
    commands:
      - command: assert
        expect: TestDriver Hat is in the cart
```
