Error: Evaluation failed: TypeError: Cannot read property 'innerHTML' of null
Closed this issue · 1 comments
kryptokinght commented
This error occurred after i added the error handling features in the parseRawBirthdayData.js
file. The way salvator bot scrapes for birthday data is :
const raw_links = document.querySelector( "#birthdays_content > div:nth-child(1) > div:nth-child(2) > ul" ).innerHTML; const raw_names = document.querySelector( "#birthdays_content > div:nth-child(1) > div:nth-child(2) > ul" ).innerText;
The script tries to assign raw_links and raw_names variables even when document.querySelector() returns undefined. When the try catch blocks were not introduced, it resulted into a silent error and was ignored. But after the addition of try catch this results into an error and stops the program.
kryptokinght commented
Fixed by #49