{"ScriptPreparationCode":"var nodes = document.querySelector(\u0027div\u0027);","TestCases":[{"Name":"Check by style property","Code":"for(var n = 0; n \u003C nodes.length; n\u002B\u002B){\r\n console.log(nodes[n].style.display == \u0027none\u0027)\r\n};","IsDeferred":false},{"Name":"Check by classList","Code":"for(var n = 0; n \u003C nodes.length; n\u002B\u002B){\r\n console.log(nodes[n].classList.contains(\u0027not-visible\u0027))\r\n}","IsDeferred":false}]}