I'm currently facing a challenge with finding the CSS path in this scenario:
There are over 20 child nodes, and I need to identify every node that has fill attribute not equal to none.
I understand that I can target a specific node using :nth-child(1) and exclude nodes with fill equal to none using :not([fill=none]).
However, how can I loop through all the nodes with fill attribute not equal to none?
I attempted the following:
div[nth-child(:not[fill=none])