query-selector-shadow-dom
query-selector-shadow-dom copied to clipboard
querySelector that can pierce Shadow DOM roots without knowing the path through nested shadow roots. Useful for automated testing of Web Components. Production use is not advised, this is for test env...
Bumps [ansi-regex](https://github.com/chalk/ansi-regex) and [ansi-regex](https://github.com/chalk/ansi-regex). These dependencies needed to be updated together. Updates `ansi-regex` from 5.0.0 to 5.0.1 Release notes Sourced from ansi-regex's releases. v5.0.1 Fixes (backport of 6.0.1 to v5)...
Bumps [json-schema](https://github.com/kriszyp/json-schema) and [jsprim](https://github.com/joyent/node-jsprim). These dependencies needed to be updated together. Updates `json-schema` from 0.2.3 to 0.4.0 Commits f6f6a3b Use a little more robust method of checking instances ef60987 Update...
### Proposed Changes - Add workflow from [webdriverio/expense-action](https://github.com/webdriverio/expense-action)
``` $ document.querySelectorAll('html > body') > NodeList [ body ] $ document.querySelectorAll('html > *') > NodeList [ head, body ] $ querySelectorShadowDom.querySelectorAllDeep('html > body') > Array [ body ] $...