Ask HN: What do you guys use to check browser compatibility
What do you guys use to check browser comp? Is there any software/plug-ins out there that work? Do you guys just do it the old fashion way? We're struggling with it (www.hangtrend.com)Advice?
Thanks Val
8 comments
[ 5.8 ms ] story [ 35.6 ms ] threadAnyway, it sucks. That's one of the reasons why being a web developer is grueling work, especially when working with older versions of IE. At this point, I pretty much just do a check to see if they are using a browser that has been released in the last 5 years. If they aren't, I display a warning (not an error) and say that the website might not function properly.
This can be a useful website though, if you are purely looking for visual compatibility: http://browsershots.org/
Hope this helps.
Thanks for the comment; It's so time consuming to have to have so many different builds/specs to check out the compatibility. Sounds like a start-up in the making. The browsershots.org site is really cool; great for a quick visual spot check. Thanks again!
Very handy.
Code here : https://github.com/xPaw/CF-ABetterBrowser
If you want to Do It Right™, and have the time to set it up, I think the best thing to do is to set up a Selenium (http://seleniumhq.org/) grid that has either VMs are standalone machines running all the browsers that you want to support. Then you can write tests that automatically verify that important features work everywhere. This doesn't completely obviate manual QA testing, but it can help a lot.