Downloadable HTML Test Corpus

I am working on a browser plug-in for Firefox, and I would like to be able to do automated testing to make sure that it handles various HTML / JavaScript functions correctly. Does anyone know of a good downloadable HTML body and / or JavaScript pages that can be used for this type of testing?

+5
source share
5 answers

Dotbot publishes a torrent file with 14 GB of HTML pages spidered in 2009.

+2
source

, HTML/JavaScript ( SO). , ( " , , , ".

, wget :

wget -t 7 -w 5 --waitretry=14 --random-wait -l 2 -m -k -K -e robots=off http://stackoverflow.com -o ./myLog.log

? Script -, Google URL- wget.

+2

The WebKit project uses SunSpider , which has tests based on "real" design patterns.

Ian Hickson HTML Test Set May Have Something Like The Strings You Are Looking For.

0
source

This ECMAScript 5 test suite tests (almost?) All the JavaScript features of the current standard. Only browser-specific features are not tested.

0
source

All Articles