mittster

Results 7 comments of mittster

I checked them too, couldn't find anything on topic. The error that I am getting is "Too many requests" so even more threads won't help. I tried with multiple accounts...

Since there will be no luck with batch requests, I'll explore if there is a way to make and configure aws gateway resource and method in a single operation instead...

Unfortunately no. I did manage to import the configuration but it wasn't any faster.

With additional testing I concluded that it is not reload, but resize event. Width jumps to 1 and then back to whatever was set before. The same problem is reported...

This resize happens on all pages. You can track it with: ``` // sets resize listener await page.evaluate((attributeName)=>{ let meta = document.createElement("meta"); let head = document.querySelector("head"); head.append(meta); addEventListener('resize', (event) =>...

@msadougi > await page.evaluate(async () => { var allElems = window.document.getElementsByTagName("*"); for (var i = 0, max = allElems.length; i < max; i++) { var hEleme = window.getComputedStyle(allElems[i]).height; if(hEleme !=...