I never found the issue tracker, so I ended up adding an ugly hack to the user-extensions file.
Something like this:
	
							
						
					Something like this:
Code:
	
	var isSCLocator = locator && 
                        ((locator.substring(0, "scLocator".length) == "scLocator") ||
                         (locator.substring(0, "scID".length) == "scID")),
        element = this.page().findElement(locator);
    if(this.hasSC() && isSCLocator) { ...
Comment