I've been attempting to mimic pressing the combination FN+DELETE using Selenium and Typescript. However, it seems that FN does not work with .sendKeys(Key.FN)
this.driver.actions().keyDown(Key.FN).sendKeys(Key.DELETE).keyUp(Key.FN).perform();
I've come across a few similar inquiries, but none of them provided the exact solution (for instance How to press the Fn + function keys on Windows?)