How to get the CSSValue for Background-position of an element when hovered

Try this in the DevTools console:

var elem = document.querySelector("your-selector");
var styl = window.getComputedStyle(elem);
styl.backgroundPosition

If that returns the same values under the same conditions, I’d trust it as correct.