Uncaught DOMException: Failed to execute 'define' on 'CustomElementRegistry' (Polymer 2.0)

navnit kapadiya picture navnit kapadiya · Jun 10, 2017 · Viewed 10.8k times · Source

I'm facing this issue while running polymer init on polymer-cli.

Uncaught DOMException: Failed to execute 'define' on 'CustomElementRegistry'

Answer

Furqan Rahamath picture Furqan Rahamath · Feb 9, 2018

Possible reasons:
- Element name starts with uppercase alphabet
- Element name does not have a hyphen in it (Thanks to Margherita Lazzarini)

Long story:
I was working with polymer CLI and when I ran polymer init, among the series of options it asks me, one of them was Main element name for which I entered Polymer-test-element.

It was giving me this error : Uncaught DOMException: Failed to execute 'define' on 'CustomElementRegistry': "Polymer-test-element" is not a valid custom element name

The problem was I had used an uppercase alphabet in the declared element name. So when I replaced 'P' with 'p' it resolved the issue.

Hope this helps you :)