Can i send KeyStroke in Selenium in Java without using a locator?
I want to send KeyStroke to WebBrowser itself, because I don't know element (and its locator), to whom I must send KeyStroke to perform action, which I want. But I know, that action performing correctly, when I manually select browser as active window and just press 'Enter' on the keyboard without selecting any element on the page.
I tried this code
SeleniumSession.keyPressNative(Integer.toString(KeyEvent.VK_ENTER));
but it didn't work for me.