Unable to identify element inside shadow-root in ReactJS application

578 Views Asked by At

ReactJS application is not allowing to find the element inside shadow-root.

I could able to access the element using /deep/ in my AngularJS application but This is not working with React application.

enter image description here

We are able to find the elements till $("#root .px-app-nav") this point

1

There are 1 best solutions below

0
On

I Found the solution. If you have any shadow-root then use elementPath.shadowRoot.querySelector(element).

$('#root px-app-nave').shadowRoot.querySelector('.app-nav')