I want to extract all HTML elements from Telegram web website. I tried all methods e.g. get, post, get() jquery, methods from Python, JavaScript, ...
But when they return the result, it is incomplete and some part of it is missing. How can I do this correctly?
This a snippet that returns an incomplete alements:
fetch("https://web.telegram.org/k/")
.then(x => x.text())
.then(y => console.log(y));