Skip to content

Instantly share code, notes, and snippets.

@lhridley
Created April 14, 2015 16:58
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save lhridley/b8dd4e5605b0e559b4dd to your computer and use it in GitHub Desktop.
PhantomCSS Homepage tests from MidCamp 2015
/*
Require and initialise PhantomCSS module
Paths are relative to CasperJs directory
*/
var phantomcss = require('./../phantomcss.js');
var url = 'http://phantomcss.dev';
var viewport = {name : 'tablet-landscape', width: 1024, height: 768}
phantomcss.init({
screenshotRoot: './screenshots/homepage',
failedComparisonsRoot: './screenshots/homepage/failures',
outputSettings: {
errorColor: {
red: 255,
green: 0,
blue: 0
},
errorType: 'movement',
transparency: 0.9
}
});
casper.start(url);
casper.viewport(viewport.width, viewport.height);
casper.page.evaluate(function() {
document.body.bgColor = 'white';
});
//Begin initScreenSelectors tests
var initScreenSelectors = [
{ selector: 'body', title: 'homepage' },
{ selector: 'header', title: 'header' },
{ selector: 'nav', title: 'navigation-bar' },
{ selector: '#main-boxes', title: 'homepage-main-boxes' },
{ selector: 'aside.span4', title: 'main-content-left-column' },
{ selector: 'section.span8', title: 'main-content-right-column' },
{ selector: 'footer', title: 'footer' }
];
getScreenElementsBySelectorList(initScreenSelectors, viewport);
//end initScreenSelectors tests
//begin boxSelectors tests
var boxSelectors = [
{ moveto: '.box-style-2.green a', selector: '#main-boxes', title: 'main-box-courses.hover' },
{ moveto: '.box-style-2.orange a', selector: '#main-boxes', title: 'main-box-apply-now.hover' },
{ moveto: '.box-style-2.red a', selector: '#main-boxes', title: 'main-box-plan-a-visit.hover' }
];
getBoxSelectorsBySelectorList(boxSelectors, viewport);
//end boxSelectors tests
casper.reload(); //reloading makes sure any residual mouseover effects are reset to default states
//mengamenu selectors, run only on screen widths >= 980
var megamenuSelectors = [
{ click: 'a.courses-megamenu', selector1: 'body', title1: 'homepage-with-courses-megamenu', selector2: 'div.courses-megamenu', title2: 'courses-megamenu', failmsg: 'Should see the Courses MegaMenu' },
{ click: 'a.academics-megamenu', selector1: 'body', title1: 'homepage-with-academics-megamenu', selector2: 'div.academics-megamenu', title2: 'academics-megamenu',failmsg: 'Should see the Academics MegaMenu' },
{ click: 'a.about-megamenu', selector1: 'body', title1: 'homepage-with-about-megamenu', selector2: 'div.about-megamenu', title2: 'about-megamenu',failmsg: 'Should see the About MegaMenu' },
{ click: 'a.pages-megamenu', selector1: 'body', title1: 'homepage-with-pages-megamenu', selector2: 'div.pages-megamenu', title2: 'pages-megamenu',failmsg: 'Should see the Pages MegaMenu' },
{ click: 'a.contact-us-megamenu', selector1: 'body', title1: 'homepage-with-contact-us-megamenu', selector2: 'div.contact-us-megamenu', title2: 'contact-us-megamenu',failmsg: 'Should see the Contact Us MegaMenu' }
];
if(viewport.width >= 980) {
getMegamenusBySelectorList(megamenuSelectors, viewport);
}
//end megamenuSelectors tests
//Do comparison on all base and comparative screenshots
casper.then( function now_check_the_screenshots(){
// compare screenshots
phantomcss.compareAll();
});
/*
Casper end tests signal
*/
casper.then( function end_it(){
casper.test.done();
});
/*
Casper run tests
*/
casper.run(function(){
console.log('\nTHE END.');
//slimer.exit();
phantom.exit(phantomcss.getExitStatus());
});
/**
* functions to execute snapshot tests
*/
function getScreenElementsBySelectorList(initScreenSelectors, viewport) {
while (initScreenSelectors.length > 0) {
initScreenSelector = initScreenSelectors.pop();
(function(initScreenSelector) {
casper.then(function(){
phantomcss.screenshot(initScreenSelector.selector, initScreenSelector.title + "_" + viewport.name);
});
})(initScreenSelector);
}
}
function getBoxSelectorsBySelectorList(boxSelectors, viewport) {
while (boxSelectors.length > 0) {
boxSelector = boxSelectors.pop();
(function(boxSelector) {
casper.then(function() {
casper.mouse.move('#logo a');
casper.wait(500);
casper.mouse.move(boxSelector.moveto);
casper.wait(2000, function() {
phantomcss.screenshot(boxSelector.selector, boxSelector.title + "_" + viewport.name);
});
});
})(boxSelector);
}
}
function getMegamenusBySelectorList(megamenuSelectors, viewport) {
while (megamenuSelectors.length > 0) {
megamenuSelector = megamenuSelectors.pop();
(function(megamenuSelector) {
casper.then(function(){
casper.click(megamenuSelector.click);
// wait for modal to fade-in
//casper.waitForSelector('div.courses-megamenu:not([style*="display: none"])',
//wait 2 seconds after clicking the menu item, then take screenshot
casper.wait(2000,
function success(){
phantomcss.screenshot(megamenuSelector.selector1, megamenuSelector.title1 + "_" + viewport.name);
phantomcss.screenshot(megamenuSelector.selector2, megamenuSelector.title2 + "_" + viewport.name);
},
function timeout(){
casper.test.fail(megamenuSelector.failmsg);
}
);
});
casper.reload();
})(megamenuSelector);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment