How to Test Web Page Designs
Take your testing seriously enough to make some simple test cases (a
software design concept). You should also document them at least to some
moderate degree. For example, you could list your expected results,
save screenshots for every “browser and test subject” pair, and add a note stating what is problematic and what needs
to be fixed. You should also indicate the date of the test and maybe
the revision id of the version control system your tested design is
residing on. It could be SVN, Git, or something else, but the little extra effort it
might take to use it will save you tons of problems if you accidentally
delete something, overwrite the wrong code, or when (not if) your work
machine breaks down irreparably.
If your test concludes that something needs to be fixed, once you have
made the modifications, you should perform a second test, exclusively
for the parts which are affected by your changes. Remember to note the
reason for the modification along with your documentation, and possibly
also in the code. You should repeat this step until, hopefully, your
design looks sufficiently well in all of your tested browsers, and no more changes are needed.
you should also test for cases when a certain feature in your design, like Adobe Flash or JavaScript, is not available or not switched on in the viewer’s browser. This is another place to use the principles of graceful degradation and progressive enhancement.
No comments:
Post a Comment