I have been trying to press (CTRL + ALT + 'f') after selecting a WebElement using selenium 3.5 on firefox quantum. This is the code I have written :
WebElement ele = m_driver.findElement(By.cssSelector(".tm-project-name"));
ele.click();
Actions act = new Actions(m_driver);
act.sendKeys(Keys.CONTROL).perform();
act.sendKeys(Keys.ALT).perform();
act.sendKeys("f").perform();
For performing this work I also tried this method
act.sendKeys(Keys.chord(Keys.CONTROL, Keys.ALT, "F")).build().perform();
Both of these methods works fine on chrome browser but fails to work in firefox quantum. Can anyone help me out on this issue.