Currently, I'm working on writing code with WebdriverIO that involves pressing the shift and tab keys simultaneously.
So far, I've successfully managed to press each key individually using browser.keys("\uE004");
and browser.keys("\uE008");
. However, these actions don't happen together as required.
I also attempted passing an array like
browser.keys(["\uE004", "\uE008"]);
, but unfortunately, it still only presses one key at a time. Can anyone offer guidance on how to make both keys work concurrently?