Is there a way to perform a Windows+D key press by Selenium WebDriver Actions?
I can do almost all the other combinations of key pressings with Actions but couldn't find the way to simulate a Windows key press.
It should be something like this:
action.keyDown(Windows).sendKeys((String.valueOf('\u0036'))).keyUp(Windows).perform()
I also know how to do this with Robot but I'm looking for resolutions by Actions.
UPD:
None of so far suggested already existing questions with their answers DOES NOT provide answer to this problem!
So please do not flag my question as duplicate until you found an answer, tried is and found it answering my question!