A regular click isn’t always enough. Opening a document requires a double click; showing a context menu requires a right click.
The browser on the right has two buttons. Activate the first with a double click and the second with a right click.
The page object is already available. Complete both actions correctly to pass the mission.
Several approaches work for right-click — the standard
click({ button: 'right' })does not fully trigger thecontextmenuevent in this simulation;dispatchEvent('contextmenu')is the reliable path.