You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm attempting to use a selector that works with querySelector, but doesn't with the querySelectorDeep function in this package.
meta[name = 'some_name']
Stepping through the code, I eventually get to a point where it's trying to use this as the selector:
'some_name']
And fails at the .matches() call in collectAllElementsDeep with:
Error: Failed to execute 'matches' on 'Element': ''some_name']' is not a valid selector.
If I take the whitespace out it works fine. And like I said above, this same selector works in the browser's querySelector and querySelectorAll functions. So the parsing is incorrect in this package.