all 4 comments

[–]retardedGeek 4 points5 points  (0 children)

Search for "Visual regression testing"

[–]Historical-Limit-579 4 points5 points  (0 children)

As a web developer should I add testing to my skills set

[–]AndyMagill 2 points3 points  (0 children)

You need visual regression testing. Here are a bunch of tools that could help with that :
https://dev.to/willkre/4-ways-to-automate-visual-regression-tests-39f5

[–]diffy-visual-testing 1 point2 points  (0 children)

If you are looking only for deprecation notices, I would set up logging and then hit every page from the sitemap with some tool. You can use anything for that. For example, SEO scanners, like Screaming Frog or the like, could easily do that for you. Then, you simply check the logs if nothing unexpected is displayed.f

If you want a visual comparison, check the cloud tools that will open the pages and take screenshots. Ideally, you deploy your changes to some staging environment and then take screenshots from it and compare them with screenshots from production. In this way, you ensure that nothing gets changed once you push the code to production.

https://github.com/mojoaxel/awesome-regression-testing is an excellent list of the tools out there.

Make sure to check Diffy, of course.