selector not working: how to debug?
I'm doing this in my author instance.
so I have a page (/content/my-site/my-page) with sling:resourceType = "core/wcm/components/page/v3/page".
In /apps/core/wcm/components/page/v3/page, I created "page.print.html" with the following contents,
<!DOCTYPE HTML>
<html>
<head></head>
<body>
<h1>print version</h1>
</body>
</html>
When I visited localhost:4502/content/my-site/my-page.print.html, I am expecting to see "print version" in the browser. BUT it seems AEM is ignoring the "print" selector and the request is resolving to page.html instead.
Using this tool (http://localhost:4502/system/console/servletresolver), AEM can recognize my selector BUT it's just ignoring it when it renders the page.
Any ideas why this is happening? Thanks