chore: fix xpath-in-iframe (#21367)

Fixes https://github.com/microsoft/playwright/issues/21364
This commit is contained in:
Pavel Feldman 2023-03-03 09:13:25 -08:00 committed by GitHub
parent e29a6e7bb0
commit c17eea7a3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@ export const XPathEngine: SelectorEngine = {
if (selector.startsWith('/'))
selector = '.' + selector;
const result: Element[] = [];
const document = root instanceof Document ? root : root.ownerDocument;
const document = root.ownerDocument || root;
if (!document)
return result;
const it = document.evaluate(selector, root, null, XPathResult.ORDERED_NODE_ITERATOR_TYPE);