Some elements do not have a suitable discriminator for testing purposes (for example, an identifier or other CSS selector that you would like to bind to in your tests).
Fortunately, the concept of activeElement continues. So, if the element's blur function is what you want to test, your own javascript way (independent of jQuery or similar) to check this:
driver.ExecuteScript("!!document.activeElement ? document.activeElement.blur() : 0");
source share