I am using the getElementsByClassName on the container object using React Testing Library
let e = container.getElementsByClassName("my-Table-row");
How do I view the HTML in "e" ? All I have is something that looks like :
Proxy {Symbol(impl): HTMLCollectionImpl}
....which doesnt help much.
console.info(..) also does not give back anything satisfactory.