UNPKG

casperjs

Version:

A navigation scripting & testing utility for PhantomJS and SlimerJS

12 lines (11 loc) 438 B
/*eslint strict:0*/ casper.test.begin('getHTML() tests', 2, function(test) { casper.start('tests/site/index.html', function() { test.assertEquals(this.getHTML('ul li'), 'one', 'Casper.getHTML() retrieves inner HTML by default'); test.assertEquals(this.getHTML('ul li', true), '<li>one</li>', 'Casper.getHTML() can retrieve outer HTML'); }).run(function() { test.done(); }); });