We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The method isElementExist uses document.contains to check if the target element exists.
isElementExist
document.contains
However, if Zoomist is run inside ShadowRoot, the target element is not inside document. Thus, the check fails and raises immediately an error.
document
It would be nice, if the check could be adjusted to allow usage inside ShadowRoot.
Thank you and keep up the good work! :-)
The text was updated successfully, but these errors were encountered:
@marvinscharle Thanks for your suggestion! I'll fix it when I have some free time.
Sorry, something went wrong.
No branches or pull requests
The method
isElementExist
usesdocument.contains
to check if the target element exists.However, if Zoomist is run inside ShadowRoot, the target element is not inside
document
. Thus, the check fails and raises immediately an error.It would be nice, if the check could be adjusted to allow usage inside ShadowRoot.
Thank you and keep up the good work! :-)
The text was updated successfully, but these errors were encountered: