```yaml testdriver/hover-image.yaml highlight={9-11}
version: 6.0.0
steps:
  - prompt: login
    commands:
      - command: run
        file: testdriver/snippets/login.yaml
  - prompt: click on the image of a shopping cart
    commands:
      - command: hover-image
        description: shopping cart icon next to the Cart text in the top right corner
        action: click
  - prompt: assert that you see an empty shopping cart
    commands:
      - command: assert
        expect: Your cart is empty
```
