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.
We are able to find the elements till $("#root .px-app-nav")
this point
I Found the solution. If you have any shadow-root then use
elementPath.shadowRoot.querySelector(element)
.$('#root px-app-nave').shadowRoot.querySelector('.app-nav')