frames.js
1.19 KB
/*global casper __utils__*/
/*jshint strict:false*/
casper.start('tests/site/frames.html');
casper.waitForFrame('frame1', function() {
this.test.pass('Casper.waithForFrame() can wait for a frame to be loaded.');
this.test.assertTitle('CasperJS test frames');
});
casper.waitForFrame('frame2', function() {
this.test.pass('Casper.waithForFrame() can wait for another frame to be loaded.');
this.test.assertTitle('CasperJS test frames');
});
casper.withFrame('frame1', function() {
this.test.assertTitle('CasperJS frame 1');
this.test.assertExists("#f1");
this.test.assertDoesntExist("#f2");
this.test.assertEval(function() {
return '__utils__' in window && 'getBinary' in __utils__;
}, '__utils__ object is available in child frame');
});
casper.withFrame('frame2', function() {
this.test.assertTitle('CasperJS frame 2');
this.test.assertExists("#f2");
this.test.assertDoesntExist("#f1");
this.test.assertEval(function() {
return '__utils__' in window && 'getBinary' in __utils__;
}, '__utils__ object is available in other child frame');
});
casper.run(function() {
this.test.assertTitle('CasperJS test frames');
this.test.done(13);
});