http://responsivenews.co.uk/post/56884056177/wraith https://www.npmjs.org/package/grunt-photobox http://cburgmer.github.io/csscritic/ https://github.com/Huddle/PhantomCSS http://siteeffect.io/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Save this as a seperate file & execute it before the second file | |
// It will collect all the links and store them in a file | |
module.exports = { | |
'Collect all the links': function (test) { | |
test.open('http://google.com') | |
// load all the links | |
.execute(function () { | |
var links = document.getElementsByTagName('a'); | |
var data = []; | |
for (var i = 0; i <= links.length; i++) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
module.exports = { | |
'Can fill out form': function (test) { | |
test.open('http://tentoring.com/') | |
.type('#name', 'Sebastian Golasch') | |
.type('#email', '[email protected]') | |
.execute(function () { | |
// use "in Browser" javascript to select the items |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// using appium 0.9.something it was paossible to do this | |
// appium server (this file doesn't exist anymore) | |
var appium = require('appium/server'); | |
// some args | |
var appiumArgs = { | |
app: null, | |
ipa: null, | |
quiet: true, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// given that the Logout function looks something like this: | |
// contents of functions.js | |
module.exports = { | |
Logout: function (aVar, bVar, test) { | |
console.log('Im logging the 2nd argument, just for fun:', bVar); | |
test | |
.click('#logout' + aVar) | |
.done(); | |
} | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test.execute(function () { | |
var nl = document.querySelectorAll(".menubar a[href]"); | |
var as = Array.prototype.slice.call(nl); | |
as.foreach(function (el) { | |
var attr = el.getAttribute('data-tracking-id'); | |
this.assert.ok((attr !== null), 'Attribute exists for:' + el.outerHTML); | |
}.bind(this)) | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
loginLocal: function (test) { | |
test | |
.open('http://thefalloftheeleventh.com') | |
.type('[name="user"]', 'John Smith') | |
.type('[name="pass"]', 'tardis') | |
.click('button[type="submit"]') | |
.done(); | |
}, |
I have an error compiling sassc with Emscripten, maybe someone is able to point me to the failure or has an idea what I might be doing wrong here...
If I just compile sassc the "normal" way, everything works as expected.
Here are the steps I made (and their output):
$ export SASS_LIBSASS_PATH=/Users/asciidisco/Downloads/sassc/libsass
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@{$hashQ->{apIDs}}=grep !/$id/,@{$hashQ->{apIDs}}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var spdy = require('spdy'); | |
var WebSocket = require('ws'); | |
var koa = require('koa'); | |
var fs = require('fs'); | |
var views = require('co-views'); | |
// spdy key data | |
var options = { | |
key: fs.readFileSync(__dirname + '/keys/server.key'), | |
cert: fs.readFileSync(__dirname + '/keys/server.crt'), |