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 have the following HTML source code. It is composed of several individual HTML files when rendering server-side. Hence, the multiple occurrences of <!DOCTYPE html>.
Basically, it is a comment id="c" which is a reply to comment id="b" which is a reply to comment id="a".
a
b
c
The HTML source code is parsed by page.goto() in a way that the replies are no longer nested in their parent. That is why the tests fail. The same happened with assigning to page.content by the way.
The source code works when assigning it directly to document.body.innerHTML or rendering it in the browser.
v16.7.1
I have the following HTML source code. It is composed of several individual HTML files when rendering server-side. Hence, the multiple occurrences of
<!DOCTYPE html>
.Basically, it is a comment
id="c"
which is a reply to commentid="b"
which is a reply to commentid="a"
.The HTML source code is parsed by
page.goto()
in a way that the replies are no longer nested in their parent. That is why the tests fail. The same happened with assigning topage.content
by the way.The source code works when assigning it directly to
document.body.innerHTML
or rendering it in the browser.Output
The text was updated successfully, but these errors were encountered: