* Selenium doesn't properly drag and drop items in IE8. It tries to
* start dragging an element from a position above the element itself.
*/
if (BrowserUtil.isIE8(getDesiredCapabilities())) {
Actions action = new Actions(getDriver());
action.moveToElement(element);
action.moveByOffset(0, 1);
action.clickAndHold();
action.moveByOffset(xOffset, yOffset);
action.release();
action.build().perform();