Skip to content

Instantly share code, notes, and snippets.

View Saulis's full-sized avatar

Sauli Tähkäpää Saulis

View GitHub Profile
@Artur-
Artur- / gist:4b2fb9549db4d7de23fb
Last active August 29, 2015 14:15
Find remote controls with size problems from TeamCity
$x("//a[@class='testWithDetails']").forEach(function(val) {val.click();} );
// Wait for all stack traces to load...
var remoteIps = {};
$x("//div[@class='fullStacktrace']").forEach(
function(val) {
var t = val.innerText ;
t = t.substring(0,t.indexOf("\n"));
if (t.indexOf("contained images with differing ") == -1)
return;