var elems = document.querySelectorAll('table>tbody');
[].forEach.call(elems, function (el) {
if (el.childNodes.length === 0) {
console.log(el.textContent);
console.log("//////////////////////////////////////");
}
});
Вот так не находит, подскажите, где ошибся?