I'm working on some code so I can quickly check to make sure that all the links in the footer of around 20 different pages are working correctly. I have the code for searching each individual page down, as something like:
strArr[0] = (footerDivId.childNodes[1].href == site);
What I want for the final script is a page saying something like:
Site1: true, true, true, true
Site2: true, true, true, true
So that I don't have to manually go to each page, execute the script, and check the results.
strArr[0] = (footerDivId.childNodes[1].href == site);
What I want for the final script is a page saying something like:
Site1: true, true, true, true
Site2: true, true, true, true
So that I don't have to manually go to each page, execute the script, and check the results.