How can I type into the chrome omnibox/address bar using selenium webdriver?

google-chrome, selenium-webdriver

Solution

Turns out it's not possible to type into the omnibox as it is outside the scope of Selenium.

Problem

I want to use Selenium webdriver to type into the chrome omnibox (address bar) to check that an extension is being targeted. I know how to send keys using selenium, but not how to send them to the omnibox. I've been googling this for a while, but I'm not sure how to go about it. Does anyone have any ideas?

Original source