Currently, I am utilizing the Robot Framework in conjunction with Selenium2Library for automating tests on websites. During one particular scenario, a prompt box appeared (similar to an alert but containing an input field). The challenge is that Robot Framework can only interact with such pop-ups by clicking OK or Cancel (using Confirm Action and Choose Cancel On Next Confirmation keywords). So, my query is: how can I input text into the prompt box? Is it even feasible?
In SeleniumLibrary, there was a convenient Press Key Native keyword which allowed key press without specifying the target element. Unfortunately, this feature is missing in Selenium2Library. Any suggestions on alternative solutions would be greatly appreciated.
Utilizing AutoIT is not viable as our tests need to run on various platforms besides Windows.
It seems like I might be overlooking something crucial here. Any insights are welcome!