hello i've been doing a project to analyse a chess tournament. Therefore i want to scrape the data from the website https://turniere.schachklub-kelheim.de/BAD-2022-U16/einzel. However it did't work as i planned.
I used this following code in Google apps script, but it doesn't give me the complete html.
function getLichessLink() {
var url="https://turniere.schachklub-kelheim.de/BAD-2022-U16/einzel";
var response=UrlFetchApp.fetch(url).getContentText();
var pattern = new RegExp('<div id="root">(.*?)</div>', "g");
var match = response.match(pattern)
}
my logger shows that the response is missing several tag and is empty, altough there should be content in there. Thanks for answers.