Cypress - Get page size (weight)?

Viewed 125
1 Answers

Even i was trying the same ,Cypress didn't give you pagesize but in javascript you can try below, I tried below Thing seems like working.

let s = document.getElementsByTagName('HTML')[0].outerHTML.length;
cy.log(s)

but not sure if it completely loads data of api returned as well. Still trying out few things ;)

Related