I'm trying to open console when in a chrome/firefox webpage, using this line:
webDriverEx.getWebDriver().findElement(By.xpath("/html/body")).sendKeys(Keys.F12);
it works on IE. tried also:
Actions action = new Actions(webDriverEx);
action.sendKeys(Keys.F12).perform();
but no affect. console won't open. why won't it open?