Is there any way to find out which policies are being used on a page?
Below is an example
<div>
algumas coisas ...
<minhadiretiva></minhadiretiva>
<minhadiretiva1></minhadiretiva1>
<minhadiretiva2></minhadiretiva2>
outras coisas ...
</div>
And here is the html for the "minadirector"
<div>
<minhadiretivafilha></minhadiretivafilha>
<minhadiretivafilha1></minhadiretivafilha1>
<minhadiretivafilha2></minhadiretivafilha2>
</div>
Question 1: How can I display the list of policies that were used on this page? (for example on the console or somewhere else)
The answer to this question should be
minhadiretiva, minhadiretivafilha, minhadiretivafilha1, minhadiretivafilha2, minhadiretiva1, minhadiretiva2
Question 2: If there is an answer to question 1, is there a way to "discover" the policies used using only the browser console? Or do I need my directives to follow some sort of pattern? (eg some attribute or something)
NOTE: I asked the same question on the gringo stackoverflow, but I did not get much interest from the community in answering this question. The idea is to bring this doubt here and see if our community is more interested in answering it.