{"ScriptPreparationCode":"var parent = document.getElementById(\u0027test\u0027);","TestCases":[{"Name":"without nodeName","Code":"parent.childNodes.forEach(function (node) {\r\n\tlet n = node;\r\n });\r\n ","IsDeferred":false},{"Name":"with nodeName","Code":"parent.childNodes.forEach(function (node) {\r\n\tlet n = node;\r\n \tlet x = node.nodeName;\r\n });\r\n ","IsDeferred":false},{"Name":"with nodeName and nextSibling","Code":"parent.childNodes.forEach(function (node) {\r\n\tlet n = node;\r\n \tlet x = node.nodeName;\r\n let y = node.nextSibling;\r\n });","IsDeferred":false}]}