How can I access node that have dynamic id value using Polymer node finding by id?
For example
According to this document in Polymer 2.x $$ is not supported, so use this.shadowRoot.querySelector instead.
$$
this.shadowRoot.querySelector
console.log(this.shadowRoot.querySelector('#' + id));
If you are using Polymer 1.x then you can use $$.