Selenium IE webdriver's getCurrentUrl() leaves out the part of url after the hash. For example, if the current url on the page is https://hostname/some/thing/here#something/after/hash , then the driver.getCurrentUrl() with IE just returns 'https://hostname/some/thing/here' and leaves out hash and the part after that.
This part works well with Chrome and Gecko driver, seeing this behavior in IE. I'm using RemoteDriver but I'm sure this would happen in local driver as well.
Any ideas ?