{"ScriptPreparationCode":null,"TestCases":[{"Name":"insertRow ","Code":"const table1 = document.createElement(\u0027table\u0027);\r\nconst target1 = document.getElementById(\u0022test1\u0022);\r\ntarget1.appendChild(table1);\r\nconst newThead = table1.createTHead();\r\nconst headerRow = newThead.insertRow();","IsDeferred":false},{"Name":"appendChild","Code":"const table2 = document.createElement(\u0027table\u0027);\r\nconst target2 = document.getElementById(\u0022test2\u0022);\r\ntarget2.appendChild(table2);\r\nconst newThead = document.createElement(\u0027thead\u0027);\r\ntarget2.appendChild(newThead);\r\nconst headerRow = document.createElement(\u0027tr\u0027);\r\nnewThead.appendChild(headerRow);","IsDeferred":false}]}