I'm tring to simulate pressing the commend FN+DELETE using Selenium and Typescript. But seems like FN doesn't exist in .sendKeys(Key.FN)
this.driver.actions().keyDown(Key.FN).sendKeys(Key.DELETE).keyUp(Key.FN).perform();
I saw a couple similar questions, but still couldn't find the right unswer (for example How to press the Fn + function keys on Windows?)