Loading challenge...
Click region paths on an inline SVG map located by their title accessible name, not visible text
Click a region path to select it โ each region's accessible name comes from a child <title>, and a <g transform> offsets the geometry so pixel clicks land in the wrong place
The map is a single inline <svg> with four <path> regions wrapped in a translated <g transform>. Each path carries a child <title> (its accessible name) and a data-region attribute.
The compass marker in the centre is drawn via <use href="#icon-sym">, so the visible icon has no markup of its own to query.
Click any province on the map
Selected region: None
Automation hints
<title> โ resolve a path with page.getByTitle("Northern Province") or by ARIA name, not by visible text (there is none)<use href="#icon-sym"> instance โ it has no shapes of its own to query; only the <symbol id="icon-sym"> in <defs> holds the geometry<g transform> offsets the geometry, so a coordinate-based click can miss โ click the <path> element itself, e.g. [data-region='north']#selected-region(its text is the capitalized name) and the active path's aria-pressed="true"