You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a part of one of automation projects for a Mac app we are working on, I've got to enable a specific environment by hitting Control + d + e + v key combination.
I've tried the following as per documentation:
I can hear that some keyboard event is sent but I don't know exactly what, and I can't get info in the logs.
Is this the correct way of hitting this key combo? Or is there something else?
The text was updated successfully, but these errors were encountered:
Hi team,
As a part of one of automation projects for a Mac app we are working on, I've got to enable a specific environment by hitting Control + d + e + v key combination.
I've tried the following as per documentation:
await browser.executeScript("macos: keys", [{ keys: [{ key: "d", modifierFlags: (1 << 2 )}, { key: "e", modifierFlags: (1 << 2 )}, { key: "v", modifierFlags: (1 << 2 )} ] } ]);
I can hear that some keyboard event is sent but I don't know exactly what, and I can't get info in the logs.
Is this the correct way of hitting this key combo? Or is there something else?
The text was updated successfully, but these errors were encountered: